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 2.7.9, it
36 is included by default with the Python binary installers.
37 * a virtual environment is a semi-isolated Python environment that allows
42 * the `Python Packaging Index <https://pypi.org>`__ is a public repository of
43 open source licensed packages made available for use by other Python users
44 * the `Python Packaging Authority
52 the Python standard library in 1998. While direct use of ``distutils`` is
56 of the mailing list used to coordinate Python packaging standards
67 dependencies from the Python Packaging Index::
81 Python.
98 found in the `Python Packaging User Guide <https://packaging.python.org>`__.
102 `Python Packaging User Guide: Installing Python Distribution Packages
111 ... install ``pip`` in versions of Python prior to Python 2.7.9?
114 Python only started bundling ``pip`` with Python 2.7.9. For earlier versions,
115 ``pip`` needs to be "bootstrapped" as described in the Python Packaging
120 `Python Packaging User Guide: Requirements for Installing Packages
133 ... install scientific Python packages?
136 A number of scientific Python packages have complex binary dependencies, and
145 `Python Packaging User Guide: Installing Scientific Packages
149 ... work with multiple versions of Python installed in parallel?
152 On Linux, Mac OS X and other POSIX systems, use the versioned Python commands
156 python2 -m pip install SomePackage # default Python 2
157 python2.7 -m pip install SomePackage # specifically Python 2.7
158 python3 -m pip install SomePackage # default Python 3
159 python3.4 -m pip install SomePackage # specifically Python 3.4
163 On Windows, use the ``py`` Python launcher in combination with the ``-m``
166 py -2 -m pip install SomePackage # default Python 2
167 py -2.7 -m pip install SomePackage # specifically Python 2.7
168 py -3 -m pip install SomePackage # default Python 3
169 py -3.4 -m pip install SomePackage # specifically Python 3.4
182 Installing into the system Python on Linux
185 On Linux systems, a Python installation will typically be included as part
186 of the distribution. Installing into this Python installation requires
209 Python has typically relied heavily on source based distribution, with end
215 Python Packaging Index, this problem is expected to diminish over time,
226 `Python Packaging User Guide: Binary Extensions