Searched full:pip (Results 1 – 25 of 1060) sorted by relevance
12345678910>>...43
pip/__init__.py pip/__main__.py pip/_internal/__init__.py pip/_internal/
33 # To pass open source testing in the pip Kokoros.81 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip94 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip111 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip130 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip148 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip168 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip188 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip208 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip236 "no_pip", # TODO(b/149738646): fix pip install so these tests run on kokoro pip[all …]
27 struct p_info *pip; member41 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 …]
7 boulet.pip \8 brisebarre.pip \9 cg1.pip \10 esced.pip \11 ex2.pip \12 ex.pip \13 exist.pip \14 exist2.pip \15 fimmel.pip \16 max.pip \[all …]
22 ("pip", _PIP_VERSION, "py2.py3"),28 # after pip has executed. Particulary, this avoids the case when pip holds onto36 runpy.run_module("pip", run_name="__main__", alter_sys=True)43 Returns a string specifying the bundled version of pip.48 # We deliberately ignore all pip environment variables49 # when invoking pip54 # We also ignore the settings in the default pip configuration file63 Bootstrap pip into the current Python installation (or the given root78 Bootstrap pip into the current Python installation (or the given root79 directory). Returns pip command status code.[all …]
1 :mod:`ensurepip` --- Bootstrapping the ``pip`` installer5 :synopsis: Bootstrapping the ``pip`` installer into an existing Python10 The :mod:`ensurepip` package provides support for bootstrapping the ``pip``12 bootstrapping approach reflects the fact that ``pip`` is an independent18 directly (as ``pip`` should be bootstrapped by default), but it may be19 needed if installing ``pip`` was skipped when installing Python (or20 when creating a virtual environment) or after explicitly uninstalling ``pip``.25 needed to bootstrap ``pip`` are included as internal parts of the33 :pep:`453`: Explicit bootstrapping of pip in Python installations49 This invocation will install ``pip`` if it is not already installed,[all …]
21 ("pip", _PIP_VERSION),31 import pip._internal32 return pip._internal.main(args)37 Returns a string specifying the bundled version of pip.43 # We deliberately ignore all pip environment variables44 # when invoking pip49 # We also ignore the settings in the default pip configuration file58 Bootstrap pip into the current Python installation (or the given root73 Bootstrap pip into the current Python installation (or the given root74 directory). Returns pip command status code.[all …]
45 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 variables145 # ensurepip deliberately ignores the pip config file154 pip = None[all …]
1 :mod:`ensurepip` --- Bootstrapping the ``pip`` installer5 :synopsis: Bootstrapping the "pip" installer into an existing Python12 The :mod:`ensurepip` package provides support for bootstrapping the ``pip``14 bootstrapping approach reflects the fact that ``pip`` is an independent20 directly (as ``pip`` should be bootstrapped by default), but it may be21 needed if installing ``pip`` was skipped when installing Python (or23 ``pip``.28 needed to bootstrap ``pip`` are included as internal parts of the36 :pep:`453`: Explicit bootstrapping of pip in Python installations49 This invocation will install ``pip`` if it is not already installed,[all …]
29 %PY_EXE% -m pip install --upgrade "setuptools<53" pip wheel34 %PY_EXE% -m pip install "numpy ~= 1.19.2"36 %PY_EXE% -m pip install "absl-py ~= 0.10"37 %PY_EXE% -m pip install "astunparse ~= 1.6.3"38 %PY_EXE% -m pip install "flatbuffers ~= 1.12.0"39 %PY_EXE% -m pip install "google_pasta ~= 0.2"40 %PY_EXE% -m pip install "h5py ~= 3.1.0"41 %PY_EXE% -m pip install "keras_preprocessing ~= 1.1.2"42 %PY_EXE% -m pip install "opt_einsum ~= 3.3.0"43 %PY_EXE% -m pip install "protobuf >= 3.9.2"[all …]
44 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 variables144 # ensurepip deliberately ignores the pip config file152 pip = None[all …]
35 * ``pip`` is the preferred installer program. Starting with Python 2.7.9, it41 is defaults to installing ``pip`` into all created virtual environments.69 python -m pip install SomePackage75 ``virtualenv`` to provide such environments using either pip76 (``pip install virtualenv``) or through your system package manager88 python -m pip install SomePackage==1.0.4 # specific version89 python -m pip install "SomePackage>=1.0.4" # minimum version95 python -m pip install --upgrade SomePackage97 More information and resources regarding ``pip`` and its capabilities can be111 ... install ``pip`` in versions of Python prior to Python 2.7.9?[all …]
35 * ``pip`` is the preferred installer program. Starting with Python 3.4, it42 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 SomePackage99 python -m pip install SomePackage==1.0.4 # specific version100 python -m pip install "SomePackage>=1.0.4" # minimum version106 python -m pip install --upgrade SomePackage108 More information and resources regarding ``pip`` and its capabilities can be126 ... 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 …]
92 Managing Packages with pip96 :program:`pip`. By default ``pip`` will install packages from the Python98 Package Index by going to it in your web browser, or you can use ``pip``'s103 (tutorial-env) $ pip search astronomy111 ``pip`` has a number of subcommands: "search", "install", "uninstall",113 complete documentation for ``pip``.)119 (tutorial-env) $ python -m pip install novas131 (tutorial-env) $ python -m pip install requests==2.6.0137 If you re-run this command, ``pip`` will notice that the requested139 different version number to get that version, or you can run ``pip[all …]
1 PIP=`which pip || (python --version 2>&1 | grep -q 'Python 2' && which pip2) || (python --version 2…3 # Install dependencies using pip15 $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U mock20 $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U enum3425 $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U cryptography31 $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U coverage32 $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U PyX33 $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U codecov42 # $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U pypcap ## sr(timeout) HS43 # $SCAPY_SUDO $PIP install $PIP_INSTALL_FLAGS -U pcapy ## sniff HS[all …]
17 PIP="$1"18 PIP_INSTALL=("${PIP}" "install" "--prefer-binary" --upgrade)20 if [[ ! -x "$(which "${PIP}")" ]]; then21 # Python2 doesn't ship with pip by default.22 PYTHON="${PIP/pip/python}"23 wget "https://bootstrap.pypa.io/get-pip.py"24 "${PYTHON}" "get-pip.py"25 rm "get-pip.py"69 if [[ "${PIP}" == *pip2* ]]; then73 # Get the latest version of pip so it recognize manylinux2010[all …]
18 $ pip install grpcio24 $ sudo pip install grpcio26 If you're on Windows make sure that you installed the :code:`pip.exe` component31 $ pip.exe install grpcio33 Windows users may need to invoke :code:`pip.exe` from a command line ran as36 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 errors54 $ pip install -rrequirements.txt55 $ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .69 This is likely because :code:`pip` doesn't own the offending dependency,[all …]
32 - name: update pip34 pip install -U wheel35 pip install -U setuptools36 python -m pip install -U pip37 - name: get pip cache dir38 id: pip-cache39 run: echo "::set-output name=dir::$(pip cache dir)"40 - name: cache pip43 path: ${{ steps.pip-cache.outputs.dir }}44 …key: pip|${{ runner.os }}|${{ matrix.python }}|${{ hashFiles('setup.py') }}|${{ hashFiles('require…[all …]
7 pip: true13 - 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.txt31 install: pip install $pip_install_common 'codecov>=2.0.15' -r requirements-test.txt36 install: pip install -r requirements-test.txt41 install: pip install -r requirements-test.txt49 … - pip install virtualenv && virtualenv $HOME/virtualenv && source $HOME/virtualenv/bin/activate50 - pip install $pip_install_common -r requirements-test.txt55 install: pip install $pip_install_common60 install: pip install $pip_install_common[all …]
132 $PYTHON -m pip install --user virtualenv137 # on pip to upgrade itself because if pip is too old, it may not have the required138 # TLS version to run `pip install`.139 curl https://bootstrap.pypa.io/get-pip.py | $VENV_PYTHON141 # pip-installs the directory specified. Used because on MSYS the vanilla Windows147 $VENV_PYTHON -m pip install --no-deps .154 $VENV_PYTHON -m pip install gevent==1.3.b1158 $VENV_PYTHON -m pip install --upgrade pip==10.0.1159 $VENV_PYTHON -m pip install setuptools160 $VENV_PYTHON -m pip install cython[all …]
53 RUN apt-get update && apt-get install -y python-pip && apt-get clean54 RUN pip install --upgrade google-api-python-client64 python-pip67 RUN pip install --upgrade pip==10.0.168 RUN pip install virtualenv69 RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.5.2.post1 six==1.10.0 twisted==17.5.071 # Install pip and virtualenv for Python 3.472 RUN curl https://bootstrap.pypa.io/get-pip.py | python3.473 RUN python3.4 -m pip install virtualenv
16 # Build the Python PIP installation package for TensorFlow and install46 # 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.60 # and tensorflow-gpu pip package. Will66 # and tensorflow-cpu pip package. Will75 # Additional pip packages to be installed.76 # Caveat: pip version needs to be checked prior.180 # This script is for validating built PIP packages. Add pip tags.190 # Check currently running python and pip version203 # Retrieve only the version numbers of the python & pip in use currently.[all …]
4 rem Check pip6 python -m pip install --upgrade pip7 python -m pip --version10 python -m pip install Mako==1.1.312 python -m pip install pypiwin3213 rem Install python wheels, necessary to install SCons via pip14 python -m pip install wheel16 python -m pip install scons==3.1.219 python -m pip install Mako meson