• Home
  • Raw
  • Download

Lines Matching refs:Python

6 Installing Python Modules
11 As a popular open source development project, Python has an active
13 available for other Python developers to use under open source license terms.
15 This allows Python users to share and collaborate effectively, benefiting
21 creating and sharing your own Python projects, refer to the
29 use of the distribution and installation tools provided with Python.
35 * ``pip`` is the preferred installer program. Starting with Python 3.4, it
36 is included by default with the Python binary installers.
37 * A *virtual environment* is a semi-isolated Python environment that allows
41 been part of Python since Python 3.3. Starting with Python 3.4, it
45 Python prior to 3.4, which either don't provide ``venv`` at all, or
47 * The `Python Packaging Index <https://pypi.org>`__ is a public
49 other Python users.
50 * the `Python Packaging Authority
58 the Python standard library in 1998. While direct use of ``distutils`` is
62 of the mailing list used to coordinate Python packaging standards
67 Python 3.3 and 3.4, and is `deprecated in Python 3.6
75 `Python Packaging User Guide: Creating and using virtual environments
86 dependencies from the Python Packaging Index::
97 Python.
114 found in the `Python Packaging User Guide <https://packaging.python.org>`__.
122 `Python Packaging User Guide: Installing Python Distribution Packages
131 ... install ``pip`` in versions of Python prior to Python 3.4?
134 Python only started bundling ``pip`` with Python 3.4. For earlier versions,
135 ``pip`` needs to be "bootstrapped" as described in the Python Packaging
140 `Python Packaging User Guide: Requirements for Installing Packages
153 ... install scientific Python packages?
156 A number of scientific Python packages have complex binary dependencies, and
164 `Python Packaging User Guide: Installing Scientific Packages
168 ... work with multiple versions of Python installed in parallel?
171 On Linux, Mac OS X, and other POSIX systems, use the versioned Python commands
175 python2 -m pip install SomePackage # default Python 2
176 python2.7 -m pip install SomePackage # specifically Python 2.7
177 python3 -m pip install SomePackage # default Python 3
178 python3.4 -m pip install SomePackage # specifically Python 3.4
182 On Windows, use the ``py`` Python launcher in combination with the ``-m``
185 py -2 -m pip install SomePackage # default Python 2
186 py -2.7 -m pip install SomePackage # specifically Python 2.7
187 py -3 -m pip install SomePackage # default Python 3
188 py -3.4 -m pip install SomePackage # specifically Python 3.4
201 Installing into the system Python on Linux
204 On Linux systems, a Python installation will typically be included as part
205 of the distribution. Installing into this Python installation requires
228 Python has typically relied heavily on source based distribution, with end
234 Python Packaging Index, this problem is expected to diminish over time,
245 `Python Packaging User Guide: Binary Extensions