Home
last modified time | relevance | path

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

12345678910>>...23

/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/python/cpython3/Lib/ensurepip/_bundled/
Dpip-19.0.3-py2.py3-none-any.whlpip/__init__.py pip/__main__.py pip/_internal/__init__.py pip/_internal/
/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/python/cpython3/Lib/ensurepip/
D__init__.py17 ("pip", _PIP_VERSION),
27 import pip._internal
28 return pip._internal.main(args)
33 Returns a string specifying the bundled version of pip.
38 # We deliberately ignore all pip environment variables
39 # when invoking pip
44 # We also ignore the settings in the default pip configuration file
53 Bootstrap pip into the current Python installation (or the given root
68 Bootstrap pip into the current Python installation (or the given root
69 directory). Returns pip command status code.
[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/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
12 The :mod:`ensurepip` package provides support for bootstrapping the ``pip``
14 bootstrapping approach reflects the fact that ``pip`` is an independent
20 directly (as ``pip`` should be bootstrapped by default), but it may be
21 needed if installing ``pip`` was skipped when installing Python (or
23 ``pip``.
28 needed to bootstrap ``pip`` are included as internal parts of the
36 :pep:`453`: Explicit bootstrapping of pip in Python installations
49 This invocation will install ``pip`` if it is not already installed,
[all …]
/external/python/cpython3/Lib/test/
Dtest_ensurepip.py44 unittest.mock.ANY, "setuptools", "pip",
59 "setuptools", "pip",
70 unittest.mock.ANY, "--user", "setuptools", "pip",
81 unittest.mock.ANY, "--upgrade", "setuptools", "pip",
92 unittest.mock.ANY, "-v", "setuptools", "pip",
103 unittest.mock.ANY, "-vv", "setuptools", "pip",
114 unittest.mock.ANY, "-vvv", "setuptools", "pip",
137 # ensurepip deliberately ignores all pip environment variables
144 # ensurepip deliberately ignores the pip config file
152 pip = None
[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.
88 python -m pip install SomePackage
104 python -m pip install SomePackage==1.0.4 # specific version
105 python -m pip install "SomePackage>=1.0.4" # minimum version
111 python -m pip install --upgrade SomePackage
113 More information and resources regarding ``pip`` and its capabilities can be
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,
[all …]
/external/python/cpython3/Doc/tutorial/
Dvenv.rst86 Managing Packages with pip
90 :program:`pip`. By default ``pip`` will install packages from the Python
92 Package Index by going to it in your web browser, or you can use ``pip``'s
97 (tutorial-env) $ pip search astronomy
105 ``pip`` has a number of subcommands: "search", "install", "uninstall",
107 complete documentation for ``pip``.)
113 (tutorial-env) $ pip install novas
125 (tutorial-env) $ pip install requests==2.6.0
131 If you re-run this command, ``pip`` will notice that the requested
133 different version number to get that version, or you can run ``pip
[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/grpc-grpc/src/python/grpcio/
DREADME.rst18 $ pip install grpcio
24 $ sudo pip install grpcio
26 If you're on Windows make sure that you installed the :code:`pip.exe` component
31 $ pip.exe install grpcio
33 Windows users may need to invoke :code:`pip.exe` from a command line ran as
36 n.b. On Windows and on Mac OS X one *must* have a recent release of :code:`pip`
53 # For the next two commands do `sudo pip install` if you get permission-denied errors
54 $ pip install -rrequirements.txt
55 $ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .
69 This is likely because :code:`pip` doesn't own the offending dependency,
[all …]
/external/tensorflow/tensorflow/tools/ci_build/builds/
Dpip.sh17 # Build the Python PIP installation package for TensorFlow and install
19 # The PIP installation is done using the --user flag.
22 # pip.sh CONTAINER_TYPE [--test_tutorials] [--integration_tests] [bazel flags]
31 # TF_BUILD_INSTALL_EXTRA_PIP_PACKAGES overrides the default extra pip packages
53 # tutorial tests (see test_tutorials.sh) after the PIP
170 # This info will be useful for determining the directory of the local pip
177 echo "Python binary path to be used in PIP install: ${PYTHON_BIN_PATH} "\
188 # Build PIP Wheel file
189 # Set default pip file folder unless specified by env variable
205 # Print the size of the PIP wheel file.
[all …]
Dpip_new.sh16 # Build the Python PIP installation package for TensorFlow and install
46 # TF_PIP_TESTS: PIP tests to run. If NOT specified, skips all tests.
56 # TF_PIP_TEST_ROOT: Root directory for building and testing pip pkgs.
63 # Additonal pip packages to be installed.
64 # Caveat: pip version needs to be checked prior.
168 # This script is for validating built PIP packages. Add pip tags.
178 # Check currently running python and pip version
191 # Retrieve only the version numbers of the python & pip in use currently.
206 "Detected pip version in use: '${PIP_VER_IN_USE}'"
210 echo "Python and PIP versions in use match the requested."
[all …]
/external/grpc-grpc/tools/run_tests/helper_scripts/
Dbuild_python.sh132 $PYTHON -m pip install --user virtualenv
137 # on pip to upgrade itself because if pip is too old, it may not have the required
138 # TLS version to run `pip install`.
139 curl https://bootstrap.pypa.io/get-pip.py | $VENV_PYTHON
141 # pip-installs the directory specified. Used because on MSYS the vanilla Windows
147 $VENV_PYTHON -m pip install --no-deps .
154 $VENV_PYTHON -m pip install gevent==1.3.b1
158 $VENV_PYTHON -m pip install --upgrade pip==10.0.1
159 $VENV_PYTHON -m pip install setuptools
160 $VENV_PYTHON -m pip install cython
[all …]
/external/grpc-grpc/tools/dockerfile/test/python_jessie_x64/
DDockerfile53 RUN apt-get update && apt-get install -y python-pip && apt-get clean
54 RUN pip install --upgrade google-api-python-client
64 python-pip
67 RUN pip install --upgrade pip==10.0.1
68 RUN pip install virtualenv
69 RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.5.2.post1 six==1.10.0 twisted==17.5.0
71 # Install pip and virtualenv for Python 3.4
72 RUN curl https://bootstrap.pypa.io/get-pip.py | python3.4
73 RUN python3.4 -m pip install virtualenv
/external/python/httplib2/
D.travis.yml7 pip: true
13 - pip_install_common='pip>=9.0 setuptools>=36.2 wheel>=0.30'
22 install: pip install $pip_install_common 'codecov>=2.0.15' -r requirements-test.txt
33 install: pip install $pip_install_common 'codecov>=2.0.15' -r requirements-test.txt
38 install: pip install -r requirements-test.txt
43 install: pip install -r requirements-test.txt
48 install: pip install $pip_install_common
53 install: pip install $pip_install_common
59 install: pip install $pip_install_common
77 install: pip install $pip_install_common
/external/grpc-grpc/tools/dockerfile/test/python_pyenv_x64/
DDockerfile53 RUN apt-get update && apt-get install -y python-pip && apt-get clean
54 RUN pip install --upgrade google-api-python-client
64 python-pip
67 RUN pip install --upgrade pip==10.0.1
68 RUN pip install virtualenv
69 RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.5.2.post1 six==1.10.0 twisted==17.5.0
95 # Install pip and virtualenv for Python 3.5
96 RUN curl https://bootstrap.pypa.io/get-pip.py | python3.5
97 RUN python3.5 -m pip install virtualenv
/external/tensorflow/tensorflow/tools/docker/
Dparameterized_docker_build.sh35 # pip wheel file will be downloaded (instead of building the pip locally).
231 # Perform local build of the required PIP whl file
235 export TF_BUILD_IS_PIP="PIP"
238 die "FAIL: Non-development MKL builds require a pre-built pip whl."
242 die "FAIL: Non-development MKL-HOROVOD builds require a pre-built pip whl."
256 # Was the pip build successful?
258 die "FAIL: Failed to build pip file locally"
263 die "ERROR: Cannot locate the locally-built pip whl file"
265 echo "Locally-built PIP whl file is at: ${PIP_WHL}"
267 # Copy the pip file to tmp directory
[all …]
/external/tensorflow/tensorflow/tools/ci_build/
DDockerfile.cmake25 RUN apt-get install -y --no-install-recommends python-pip
26 RUN pip install --upgrade wheel
27 RUN pip install --upgrade astor
28 RUN pip install --upgrade gast
29 RUN pip install --upgrade numpy
30 RUN pip install --upgrade termcolor
31 RUN pip install --upgrade keras_applications
32 RUN pip install --upgrade keras_preprocessing
/external/fonttools/.travis/
Dinstall.sh6 ci_requirements="pip setuptools tox"
10 # install pip on the system python
11 curl -O https://bootstrap.pypa.io/get-pip.py
12 python get-pip.py --user
13 python -m pip install --user virtualenv
21 python3 -m pip install virtualenv
30 python -m pip install $ci_requirements
/external/python/httplib2/script/
Dtest30 install_check_version "pip"
33 pip install -e .
47 ./venv-27/bin/pip install -e . -r requirements-test.txt
49 ./venv-36/bin/pip install -e . -r requirements-test.txt
59 install_check_version "./venv-27/bin/pip"
60 install_check_version "./venv-36/bin/pip"
66 local pip="$1"
67 $pip install dist/httplib2*
69 version_installed=$($pip show httplib2 |fgrep Version |cut -d' ' -f2)
/external/grpc-grpc/tools/dockerfile/interoptest/grpc_interop_python/
DDockerfile60 python-pip
63 RUN pip install --upgrade pip==10.0.1
64 RUN pip install virtualenv
65 RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.5.2.post1 six==1.10.0 twisted==17.5.0
67 # Install pip and virtualenv for Python 3.4
68 RUN curl https://bootstrap.pypa.io/get-pip.py | python3.4
69 RUN python3.4 -m pip install virtualenv

12345678910>>...23