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
70 `Python Packaging User Guide: Creating and using virtual environments
81 dependencies from the Python Packaging Index::
92 Python.
109 found in the `Python Packaging User Guide <https://packaging.python.org>`__.
117 `Python Packaging User Guide: Installing Python Distribution Packages
126 ... install ``pip`` in versions of Python prior to Python 3.4?
129 Python only started bundling ``pip`` with Python 3.4. For earlier versions,
130 ``pip`` needs to be "bootstrapped" as described in the Python Packaging
135 `Python Packaging User Guide: Requirements for Installing Packages
148 ... install scientific Python packages?
151 A number of scientific Python packages have complex binary dependencies, and
159 `Python Packaging User Guide: Installing Scientific Packages
163 ... work with multiple versions of Python installed in parallel?
166 On Linux, Mac OS X, and other POSIX systems, use the versioned Python commands
170 python2 -m pip install SomePackage # default Python 2
171 python2.7 -m pip install SomePackage # specifically Python 2.7
172 python3 -m pip install SomePackage # default Python 3
173 python3.4 -m pip install SomePackage # specifically Python 3.4
177 On Windows, use the ``py`` Python launcher in combination with the ``-m``
180 py -2 -m pip install SomePackage # default Python 2
181 py -2.7 -m pip install SomePackage # specifically Python 2.7
182 py -3 -m pip install SomePackage # default Python 3
183 py -3.4 -m pip install SomePackage # specifically Python 3.4
196 Installing into the system Python on Linux
199 On Linux systems, a Python installation will typically be included as part
200 of the distribution. Installing into this Python installation requires
223 Python has typically relied heavily on source based distribution, with end
229 Python Packaging Index, this problem is expected to diminish over time,
240 `Python Packaging User Guide: Binary Extensions