Home
last modified time | relevance | path

Searched full:pip (Results 1 – 25 of 1626) sorted by relevance

12345678910>>...66

/external/python/cpython3/Lib/ensurepip/_bundled/
Dpip-23.1.2-py3-none-any.whlpip/__init__.py pip/__main__.py pip/__pip-runner__.py pip/py.
/external/python/cpython2/Lib/ensurepip/_bundled/
Dpip-10.0.1-py2.py3-none-any.whlpip/__init__.py pip/__main__.py pip/_internal/__init__.py pip/_internal/
/external/tensorflow/tensorflow/compiler/tests/
DBUILD34 # To pass open source testing in the pip Kokoros.
82 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
96 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
114 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
134 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
153 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
174 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
194 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
214 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
242 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip
[all …]
/external/blktrace/btt/
Dproc.c27 struct p_info *pip; member
41 f(rb_entry(n, struct pn_info, rb_node)->pip, arg); in __foreach()
57 free(pnp->pip->name); in __destroy()
58 region_exit(&pnp->pip->regions); in __destroy()
59 free(pnp->pip); in __destroy()
77 return this->pip; in __find_process_pid()
97 return this->pip; in __find_process_name()
123 this->pip = that; in insert_pid()
151 this->pip = that; in insert_name()
157 static void insert(struct p_info *pip) in insert() argument
[all …]
/external/bazelbuild-rules_python/python/extensions/
Dpip.bzl15 "pip module extension for use with bzlmod"
18 load("//python:pip.bzl", "whl_library_alias")
33 """Implementation of the pip.whl_mods tag class.
91 "Unable to find interpreter for pip hub '{hub_name}' for " +
163 …"""Implementation of a class tag that creates the pip hub(s) and corresponding pip spoke, alias an…
165 This implmentation iterates through all of the `pip.parse` calls and creates
166 different pip hub repositories based on the "hub_name". Each of the
167 pip calls create spoke repos that uses a specific Python interpreter.
171 pip.parse(
172 hub_name = "pip",
[all …]
/external/python/cpython2/Doc/library/
Densurepip.rst1 :mod:`ensurepip` --- Bootstrapping the ``pip`` installer
5 :synopsis: Bootstrapping the ``pip`` installer into an existing Python
10 The :mod:`ensurepip` package provides support for bootstrapping the ``pip``
12 bootstrapping approach reflects the fact that ``pip`` is an independent
18 directly (as ``pip`` should be bootstrapped by default), but it may be
19 needed if installing ``pip`` was skipped when installing Python (or
20 when creating a virtual environment) or after explicitly uninstalling ``pip``.
25 needed to bootstrap ``pip`` are included as internal parts of the
33 :pep:`453`: Explicit bootstrapping of pip in Python installations
49 This invocation will install ``pip`` if it is not already installed,
[all …]
/external/python/cpython2/Lib/ensurepip/
D__init__.py21 ("pip", _PIP_VERSION),
31 import pip._internal
32 return pip._internal.main(args)
37 Returns a string specifying the bundled version of pip.
43 # We deliberately ignore all pip environment variables
44 # when invoking pip
49 # We also ignore the settings in the default pip configuration file
58 Bootstrap pip into the current Python installation (or the given root
73 Bootstrap pip into the current Python installation (or the given root
74 directory). Returns pip command status code.
[all …]
/external/python/cpython3/Lib/ensurepip/
D__init__.py12 _PACKAGE_NAMES = ('setuptools', 'pip')
17 ("pip", _PIP_VERSION, "py3"),
44 # filename is like 'pip-21.2.4-py3-none-any.whl'
54 # Extract '21.2.4' from 'pip-21.2.4-py3-none-any.whl'
82 # after pip has executed. Particularly, this avoids the case when pip holds onto
90 runpy.run_module("pip", run_name="__main__", alter_sys=True)
108 Returns a string specifying the bundled version of pip.
110 return _get_packages()['pip'].version
114 # We deliberately ignore all pip environment variables
115 # when invoking pip
[all …]
/external/python/cpython3/Lib/test/
Dtest_ensurepip.py22 self.touch(tmpdir, "pip-1.2.3b1-py2.py3-none-any.whl")
38 self.assertIsNotNone(packages['pip'].wheel_name)
44 pip_filename = "pip-20.2.2-py2.py3-none-any.whl"
59 self.assertEqual(packages['pip'].version, '20.2.2')
60 self.assertEqual(packages['pip'].wheel_path,
64 self.assertEqual(sorted(packages), ['pip', 'setuptools'])
95 unittest.mock.ANY, "setuptools", "pip",
110 "setuptools", "pip",
121 unittest.mock.ANY, "--user", "setuptools", "pip",
132 unittest.mock.ANY, "--upgrade", "setuptools", "pip",
[all …]
/external/python/cpython2/Lib/test/
Dtest_ensurepip.py45 mock.ANY, "setuptools", "pip",
60 "setuptools", "pip",
71 mock.ANY, "--user", "setuptools", "pip",
82 mock.ANY, "--upgrade", "setuptools", "pip",
93 mock.ANY, "-v", "setuptools", "pip",
104 mock.ANY, "-vv", "setuptools", "pip",
115 mock.ANY, "-vvv", "setuptools", "pip",
138 # ensurepip deliberately ignores all pip environment variables
145 # ensurepip deliberately ignores the pip config file
154 pip = None
[all …]
/external/python/cpython3/Doc/library/
Densurepip.rst1 :mod:`ensurepip` --- Bootstrapping the ``pip`` installer
5 :synopsis: Bootstrapping the "pip" installer into an existing Python
14 The :mod:`ensurepip` package provides support for bootstrapping the ``pip``
16 bootstrapping approach reflects the fact that ``pip`` is an independent
22 directly (as ``pip`` should be bootstrapped by default), but it may be
23 needed if installing ``pip`` was skipped when installing Python (or
25 ``pip``.
30 needed to bootstrap ``pip`` are included as internal parts of the
38 :pep:`453`: Explicit bootstrapping of pip in Python installations
52 This invocation will install ``pip`` if it is not already installed,
[all …]
/external/python/cpython2/Doc/installing/
Dindex.rst35 * ``pip`` is the preferred installer program. Starting with Python 2.7.9, it
41 is defaults to installing ``pip`` into all created virtual environments.
69 python -m pip install SomePackage
75 ``virtualenv`` to provide such environments using either pip
76 (``pip install virtualenv``) or through your system package manager
88 python -m pip install SomePackage==1.0.4 # specific version
89 python -m pip install "SomePackage>=1.0.4" # minimum version
95 python -m pip install --upgrade SomePackage
97 More information and resources regarding ``pip`` and its capabilities can be
111 ... install ``pip`` in versions of Python prior to Python 2.7.9?
[all …]
/external/python/cpython3/Doc/installing/
Dindex.rst35 * ``pip`` is the preferred installer program. Starting with Python 3.4, it
42 defaults to installing ``pip`` into all created virtual environments.
46 aren't able to automatically install ``pip`` into created environments.
83 python -m pip install SomePackage
99 python -m pip install SomePackage==1.0.4 # specific version
100 python -m pip install "SomePackage>=1.0.4" # minimum version
106 python -m pip install --upgrade SomePackage
108 More information and resources regarding ``pip`` and its capabilities can be
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,
[all …]
/external/bazelbuild-rules_python/examples/bzlmod/
DMODULE.bazel27 # Note: we do not supporting using multiple pip extensions, this is
46 # wheel in different pip hubs.
47 pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
50 pip.whl_mods(
69 pip.whl_mods(
82 use_repo(pip, "whl_mods_hub")
84 # To fetch pip dependencies, use pip.parse. We can pass in various options,
90 pip.parse(
91 hub_name = "pip",
96 # are providing pip.parse with the label of the mod
[all …]
/external/python/pyfakefs/.github/workflows/
Dtestsuite.yml17 run: pip install setuptools pytype pytest scandir pathlib2 pandas xlrd django
44 - name: Get pip cache dir
45 id: pip-cache
47 python -m pip install --upgrade pip
48 echo "::set-output name=dir::$(pip cache dir)"
54 path: ${{ steps.pip-cache.outputs.dir }}
55 …key: ${{ matrix.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements.txt') }}-${{…
57 ${{ matrix.os }}-${{ matrix.python-version }}-pip-
61 pip install setuptools wheel
62 pip install -r requirements.txt
[all …]
/external/scapy/.travis/
Dinstall.sh1 PIP=`which pip || (python --version 2>&1 | grep -q 'Python 2' && which pip2) || (python --version 2…
3 # Install dependencies using pip
15 $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U mock
20 $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U enum34
25 $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U cryptography
31 $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U coverage
32 $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U PyX
33 $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U codecov
42 # $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U pypcap ## sr(timeout) HS
43 # $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U pcapy ## sniff HS
[all …]
/external/python/cpython3/Doc/tutorial/
Dvenv.rst97 Managing Packages with pip
101 :program:`pip`. By default ``pip`` will install packages from the `Python
105 ``pip`` has a number of subcommands: "install", "uninstall",
107 complete documentation for ``pip``.)
113 (tutorial-env) $ python -m pip install novas
125 (tutorial-env) $ python -m pip install requests==2.6.0
131 If you re-run this command, ``pip`` will notice that the requested
134 -m pip install --upgrade`` to upgrade the package to the latest version:
138 (tutorial-env) $ python -m pip install --upgrade requests
146 ``python -m pip uninstall`` followed by one or more package names will
[all …]
/external/python/setuptools/setuptools/tests/
Dtest_virtualenv.py31 cmd = ["python", "-m", "pip", "install", str(setuptools_wheel)]
52 # ^-- Even when it is not necessary to install a different version of `pip`
58 pytest.param('pip<20', marks=pytest.mark.xfail(reason='pypa/pip#6599')),
59 'pip<20.1',
60 'pip<21',
61 'pip<22',
63 'https://github.com/pypa/pip/archive/main.zip',
71 Check pip can upgrade setuptools from source.
73 # Install pip/wheel, in a venv without setuptools (as it
76 venv.run(["pip", "install", "-U", "wheel"])
[all …]
/external/tensorflow/tensorflow/tools/ci_build/install/
Dinstall_pip_packages_by_version.sh18 PIP="$1"
19 PIP_INSTALL=("${PIP}" "install" "--prefer-binary" --upgrade)
21 PYTHON="${PIP/pip/python}"
22 wget "https://bootstrap.pypa.io/get-pip.py"
23 "${PYTHON}" "get-pip.py" --force-reinstall
24 rm "get-pip.py"
27 PYTHON_VERSION=$(echo ${PIP##*.}) # only the last number, eg. 10
65 # Get the latest version of pip so it recognize manylinux2010
66 "${PIP}" "install" "--upgrade" "pip"
67 "${PIP}" "install" "--upgrade" "setuptools" "virtualenv"
/external/python/markupsafe/.github/workflows/
Dtests.yaml32 - name: update pip
34 pip install -U wheel
35 pip install -U setuptools
36 python -m pip install -U pip
37 - name: get pip cache dir
38 id: pip-cache
39 run: echo "::set-output name=dir::$(pip cache dir)"
40 - name: cache pip
43 path: ${{ steps.pip-cache.outputs.dir }}
44 …key: pip|${{ runner.os }}|${{ matrix.python }}|${{ hashFiles('setup.py') }}|${{ hashFiles('require…
[all …]
/external/python/jinja/.github/workflows/
Dtests.yaml32 - name: update pip
34 pip install -U wheel
35 pip install -U setuptools
36 python -m pip install -U pip
37 - name: get pip cache dir
38 id: pip-cache
39 run: echo "::set-output name=dir::$(pip cache dir)"
40 - name: cache pip
43 path: ${{ steps.pip-cache.outputs.dir }}
44 …key: pip|${{ runner.os }}|${{ matrix.python }}|${{ hashFiles('setup.py') }}|${{ hashFiles('require…
[all …]
/external/python/httplib2/
D.travis.yml7 pip: true
13 - pip_install_common='pip>=9.0 setuptools>=43.0 wheel>=0.30'
19 install: pip install $pip_install_common 'codecov>=2.0.15' -r requirements-test.txt
31 install: pip install $pip_install_common 'codecov>=2.0.15' -r requirements-test.txt
36 install: pip install -r requirements-test.txt
41 install: pip install -r requirements-test.txt
49 … - pip install virtualenv && virtualenv $HOME/virtualenv && source $HOME/virtualenv/bin/activate
50 - pip install $pip_install_common -r requirements-test.txt
55 install: pip install $pip_install_common
60 install: pip install $pip_install_common
[all …]
/external/pigweed/pw_build/
Dpython_gn_args.gni25 # DOCSTAG: [default-pip-gn-args]
34 # Adds --no-index forcing pip to not reach out to the internet (pypi.org) to
39 # Adds '--no-cache-dir' forcing pip to ignore any previously cached Python
40 # packages. On most systems this is located in ~/.cache/pip/
44 # files (*.tar.gz). Pip will check each of these directories when looking for
45 # potential install candidates. Each path will be passed to all 'pip install'
49 # General options passed to pip commands
50 # https://pip.pypa.io/en/stable/cli/pip/#general-options
51 pw_build_PYTHON_PIP_DEFAULT_OPTIONS = [ "--disable-pip-version-check" ]
53 # DOCSTAG: [default-pip-gn-args]
/external/pandora/avatar/.github/workflows/
Davatar.yml24 pip install --upgrade pip
25 pip install build
26 pip install .
42 run: pip install .[dev]
56 pip install --upgrade pip
57 pip install .[dev]
81 pip install --upgrade pip
82 pip install rootcanal==1.3.0
83 pip install .
/external/python/typing/.github/workflows/
Dpackage.yml25 # Be wary of running `pip install` here, since it becomes easy for us to
27 python -m pip install --upgrade build
28 python -m pip list
36 pip install -vvv $path_to_file
37 python -m pip list
56 # Be wary of running `pip install` here, since it becomes easy for us to
58 python -m pip install --upgrade build
59 python -m pip list
67 pip install -vvv $path_to_file
68 python -m pip list

12345678910>>...66