Searched full:pip (Results 1 – 25 of 104) sorted by relevance
12345
... pip/download.py pip/exceptions.py pip/index.py pip/locations.py pip
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 …]
165 iop->pip = find_process(iop->t.pid, NULL); in io_setup()203 UPDATE_AVGS(q2c_dm, iop, iop->pip, c_time); in update_q2c()205 UPDATE_AVGS(q2c, iop, iop->pip, c_time); in update_q2c()211 UPDATE_AVGS(q2a_dm, iop, iop->pip, a_time); in update_q2a()213 UPDATE_AVGS(q2a, iop, iop->pip, a_time); in update_q2a()218 UPDATE_AVGS(q2g, iop, iop->pip, g_time); in update_q2g()223 UPDATE_AVGS(s2g, iop, iop->pip, g_time); in update_s2g()228 UNUPDATE_AVGS(q2g, iop, iop->pip, g_time); in unupdate_q2g()233 UPDATE_AVGS(g2i, iop, iop->pip, i_time); in update_g2i()238 UNUPDATE_AVGS(g2i, iop, iop->pip, i_time); in unupdate_g2i()[all …]
40 ai_pip_t pip_q2q_dm_avg(struct p_info *pip) { return &pip->avgs.q2q_dm; } in pip_q2q_dm_avg() argument41 ai_pip_t pip_q2a_dm_avg(struct p_info *pip) { return &pip->avgs.q2a_dm; } in pip_q2a_dm_avg() argument42 ai_pip_t pip_q2c_dm_avg(struct p_info *pip) { return &pip->avgs.q2c_dm; } in pip_q2c_dm_avg() argument44 ai_pip_t pip_q2q_avg(struct p_info *pip) { return &pip->avgs.q2q; } in pip_q2q_avg() argument45 ai_pip_t pip_q2c_avg(struct p_info *pip) { return &pip->avgs.q2c; } in pip_q2c_avg() argument46 ai_pip_t pip_q2a_avg(struct p_info *pip) { return &pip->avgs.q2a; } in pip_q2a_avg() argument47 ai_pip_t pip_q2g_avg(struct p_info *pip) { return &pip->avgs.q2g; } in pip_q2g_avg() argument48 ai_pip_t pip_s2g_avg(struct p_info *pip) { return &pip->avgs.s2g; } in pip_s2g_avg() argument49 ai_pip_t pip_g2i_avg(struct p_info *pip) { return &pip->avgs.g2i; } in pip_g2i_avg() argument50 ai_pip_t pip_q2m_avg(struct p_info *pip) { return &pip->avgs.q2m; } in pip_q2m_avg() argument[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 …]
44 mock.ANY, "setuptools", "pip",59 "setuptools", "pip",70 mock.ANY, "--user", "setuptools", "pip",81 mock.ANY, "--upgrade", "setuptools", "pip",92 mock.ANY, "-v", "setuptools", "pip",103 mock.ANY, "-vv", "setuptools", "pip",114 mock.ANY, "-vvv", "setuptools", "pip",137 # ensurepip deliberately ignores all pip environment variables144 # ensurepip deliberately ignores the pip config file153 pip = None[all …]
21 ("pip", _PIP_VERSION),31 import pip32 pip.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 root68 # By default, installing pip and setuptools installs all of the71 # pip, pipX, pipX.Y, easy_install, easy_install-X.Y[all …]
1 """Basic pip uninstallation support, helper for the Windows uninstaller"""12 version="pip {}".format(ensurepip.version()),13 help="Show the version of pip this will attempt to uninstall.",
35 * ``pip`` is the preferred installer program. Starting with Python 2.7.9, it41 is defaults to installing ``pip`` into all created virtual environments.70 python -m pip install SomePackage76 ``virtualenv`` to provide such environments using either pip77 (``pip install virtualenv``) or through your system package manager89 python -m pip install SomePackage==1.0.4 # specific version90 python -m pip install "SomePackage>=1.0.4" # minimum version96 python -m pip install --upgrade SomePackage98 More information and resources regarding ``pip`` and its capabilities can be112 ... install ``pip`` in versions of Python prior to Python 2.7.9?[all …]
11 - pip install matplotlib12 - pip install Cython --install-option="--no-cython-compile"13 - pip install pandas14 - pip install ipython[all]15 - pip install --upgrade trappy26 - pip
31 more packages from pip as the ones present in Ubuntu 12.04 or Debian42 $ sudo apt install python-pip python-dev47 $ sudo pip install numpy matplotlib pandas ipython[all]48 $ sudo pip install --upgrade trappy57 $ sudo pip install --upgrade bart-py61 Instead of installing TRAPpy and BART using `pip` you should clone the repositories:
35 python-numpy libfreetype6-dev libpng12-dev python-nose python-pip \38 # Upgrade pip so we can use wheel packages instead of compiling stuff, this is40 pip install --upgrade pip42 # Incantation to fix broken pip packages43 /usr/local/bin/pip install --upgrade packaging appdirs46 /usr/local/bin/pip install --upgrade "ipython<6.0.0" Cython trappy bart-py devlib psutil wrapt jupy…
10 "Install package using pip."24 check_call(['pip', 'install', package])38 # Upgrade pip because installation of sphinx with pip 1.1 available on Travis40 pip_version = get_distribution('pip').version42 print("Updating pip")43 check_call(['pip', 'install', '--upgrade', 'pip'])50 check_call(['pip', 'install', '--upgrade', 'distribute'])
2 ; RUN: llc -mcpu=pwr7 < %s | FileCheck %s -check-prefix=PIP25 ; PIP-LABEL: @foo26 ; PIP: addi [[REG1:[0-9]+]], 1,27 ; PIP: addi [[REG2:[0-9]+]], 1,28 ; PIP: %for.body.i29 ; PIP-DAG: lfsu {{[0-9]+}}, 4([[REG1]])30 ; PIP-DAG: lfsu {{[0-9]+}}, 4([[REG2]])31 ; PIP: blr
58 # install Python and pip when not already installed64 # upgrade pip to avoid out-of-date warnings65 pip install --disable-pip-version-check --user --upgrade pip68 pip install --upgrade setuptools wheel91 - if "%BUILD_SYSTEM%" == "Python" ( pip wheel -w dist . )
11 - pip install matplotlib12 - pip install Cython --install-option="--no-cython-compile"13 - pip install pandas16 - pip install "ipython[all]<6.0.0"29 - pip
13 more packages from pip as the ones present in Ubuntu 12.04 or Debian24 $ sudo apt install python-pip python-dev29 $ sudo pip install numpy matplotlib pandas ipython[all]33 $ sudo pip install --upgrade trappy
3 # Install/upgrade pip.32 # pip et al if there are /usr/local/bin/python* symlinks to our57 "pip${PYVER}" "easy_install-${PYVER}"61 "pip${PYMAJOR}"63 # Create pip and easy_install link if /usr/local/bin/python66 "pip" "easy_install"
80 # Install pip if it doesn't exist.81 code = subprocess.call("which pip > /dev/null", shell=True)85 print("Installing pip...")86 _Cmd("sudo apt-get install python-pip")88 print("Please install pip on your machine. You can get it at: "89 "http://www.pip-installer.org/en/latest/installing.html "92 print("Using pip to install UltraJSON...")93 _Cmd("sudo pip install ujson")
21 pip install nosetests42 pip install coverage52 pip install pyflakes61 pip install pylint
47 # Check pip49 - python -m pip --version51 - python -m pip install --egg Mako53 - python -m pip install pypiwin3255 - python -m pip install --egg scons==2.4.1
1 # Sample script to install Python and pip under Windows7 $GET_PIP_URL = "https://bootstrap.pypa.io/get-pip.py"8 $GET_PIP_PATH = "C:\get-pip.py"158 $pip_path = $python_home + "\Scripts\pip.exe" in InstallPip()161 Write-Host "Installing pip..." in InstallPip()167 Write-Host "pip already installed." in InstallPip()
60 python-pip \78 # to get updates from pip.80 RUN pip install pip --upgrade81 RUN pip install virtualenv tox yattag
36 pip-log.txt37 pip-delete-this-directory.txt
32 pip-log.txt33 pip-delete-this-directory.txt