Searched full:pip (Results 1 – 25 of 562) sorted by relevance
12345678910>>...23
pip/__init__.py pip/__main__.py pip/_internal/__init__.py pip/_internal/
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 …]
17 ("pip", _PIP_VERSION),27 import pip._internal28 return pip._internal.main(args)33 Returns a string specifying the bundled version of pip.38 # We deliberately ignore all pip environment variables39 # when invoking pip44 # We also ignore the settings in the default pip configuration file53 Bootstrap pip into the current Python installation (or the given root68 Bootstrap pip into the current Python installation (or the given root69 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 …]
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.88 python -m pip install SomePackage104 python -m pip install SomePackage==1.0.4 # specific version105 python -m pip install "SomePackage>=1.0.4" # minimum version111 python -m pip install --upgrade SomePackage113 More information and resources regarding ``pip`` and its capabilities can be131 ... 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 …]
86 Managing Packages with pip90 :program:`pip`. By default ``pip`` will install packages from the Python92 Package Index by going to it in your web browser, or you can use ``pip``'s97 (tutorial-env) $ pip search astronomy105 ``pip`` has a number of subcommands: "search", "install", "uninstall",107 complete documentation for ``pip``.)113 (tutorial-env) $ pip install novas125 (tutorial-env) $ pip install requests==2.6.0131 If you re-run this command, ``pip`` will notice that the requested133 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 …]
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 …]
17 # Build the Python PIP installation package for TensorFlow and install19 # 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 packages53 # tutorial tests (see test_tutorials.sh) after the PIP170 # This info will be useful for determining the directory of the local pip177 echo "Python binary path to be used in PIP install: ${PYTHON_BIN_PATH} "\188 # Build PIP Wheel file189 # Set default pip file folder unless specified by env variable205 # Print the size of the PIP wheel file.[all …]
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.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 version191 # 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 …]
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
7 pip: true13 - 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.txt33 install: pip install $pip_install_common 'codecov>=2.0.15' -r requirements-test.txt38 install: pip install -r requirements-test.txt43 install: pip install -r requirements-test.txt48 install: pip install $pip_install_common53 install: pip install $pip_install_common59 install: pip install $pip_install_common77 install: pip install $pip_install_common
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.095 # Install pip and virtualenv for Python 3.596 RUN curl https://bootstrap.pypa.io/get-pip.py | python3.597 RUN python3.5 -m pip install virtualenv
35 # pip wheel file will be downloaded (instead of building the pip locally).231 # Perform local build of the required PIP whl file235 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 …]
25 RUN apt-get install -y --no-install-recommends python-pip26 RUN pip install --upgrade wheel27 RUN pip install --upgrade astor28 RUN pip install --upgrade gast29 RUN pip install --upgrade numpy30 RUN pip install --upgrade termcolor31 RUN pip install --upgrade keras_applications32 RUN pip install --upgrade keras_preprocessing
6 ci_requirements="pip setuptools tox"10 # install pip on the system python11 curl -O https://bootstrap.pypa.io/get-pip.py12 python get-pip.py --user13 python -m pip install --user virtualenv21 python3 -m pip install virtualenv30 python -m pip install $ci_requirements
30 install_check_version "pip"33 pip install -e .47 ./venv-27/bin/pip install -e . -r requirements-test.txt49 ./venv-36/bin/pip install -e . -r requirements-test.txt59 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)
60 python-pip63 RUN pip install --upgrade pip==10.0.164 RUN pip install virtualenv65 RUN pip install futures==2.2.0 enum34==1.0.4 protobuf==3.5.2.post1 six==1.10.0 twisted==17.5.067 # Install pip and virtualenv for Python 3.468 RUN curl https://bootstrap.pypa.io/get-pip.py | python3.469 RUN python3.4 -m pip install virtualenv