Home
last modified time | relevance | path

Searched refs:virtualenv (Results 1 – 25 of 220) sorted by relevance

123456789

/external/python/setuptools/setuptools/tests/
Dtest_virtualenv.py16 def pytest_virtualenv_works(virtualenv): argument
21 venv_prefix = virtualenv.run(
55 def test_pip_upgrade_from_source(virtualenv): argument
59 dist_dir = virtualenv.workspace
62 virtualenv.run('pip install -U "wheel<0.30.0"')
64 virtualenv.run(' && '.join((
72 virtualenv.run('pip install ' + wheel)
74 virtualenv.run('pip install --no-cache-dir --upgrade ' + sdist)
/external/python/markupsafe/requirements/
Ddev.txt7 appdirs==1.4.4 # via virtualenv
11 distlib==0.3.0 # via virtualenv
12 filelock==3.0.12 # via tox, virtualenv
25 six==1.15.0 # via packaging, pip-tools, tox, virtualenv
28 virtualenv==20.0.21 # via pre-commit, tox
/external/python/jinja/requirements/
Ddev.txt7 appdirs==1.4.4 # via virtualenv
11 distlib==0.3.0 # via virtualenv
12 filelock==3.0.12 # via tox, virtualenv
24 six==1.14.0 # via packaging, pip-tools, tox, virtualenv
27 virtualenv==20.0.20 # via pre-commit, tox
/external/python/google-api-python-client/
DREADME.md21 Install this library in a [virtualenv](https://virtualenv.pypa.io/en/latest/) using pip. virtualenv
25 With virtualenv, it's possible to install this library without needing system
32 pip install virtualenv
33 virtualenv <your-env>
41 pip install virtualenv
42 virtualenv <your-env>
/external/llvm-project/lld/docs/
Dsphinx_intro.rst97 Most Python developers prefer to work with tools inside a *virtualenv* (virtual
101 with one another). Of course, you need to first have the virtualenv software
104 $ sudo easy_install virtualenv
109 Once you have the *virtualenv* tool itself installed, you can create a
110 virtualenv for Sphinx using::
112 $ virtualenv ~/my-sphinx-install
120 and from now on you can "activate" the *virtualenv* using::
125 virtual environment will be used. See the `virtualenv website
126 <http://www.virtualenv.org/en/latest/index.html>`_ for more information on using
/external/protobuf/kokoro/linux/dockerfile/test/python_jessie/
DDockerfile34 RUN pip install virtualenv
37 # Install pip and virtualenv for Python 3.4
39 RUN python3.4 -m pip install virtualenv
/external/yapf/
DHACKING.rst22 * Check it looks OK, install it onto a virtualenv, run tests, run yapf as a tool
28 * Test in a clean virtualenv that 'pip install yapf' works with the new version
32 TODO: discuss how to use tox to make virtualenv testing easier.
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/artifacts/
Dbuild_artifact_python.sh140 "${PYTHON}" -m pip install virtualenv
141 "${PYTHON}" -m virtualenv venv || { "${PYTHON}" -m pip install virtualenv==16.7.9 && "${PYTHON}" -m…
/external/flatbuffers/conan/travis/
Dinstall.sh9 brew install pyenv-virtualenv
17 pyenv virtualenv 2.7.10 conan
/external/grpc-grpc/tools/dockerfile/test/python_pyenv_x64/
DDockerfile68 RUN pip install virtualenv
87 RUN eval "$(pyenv virtualenv-init -)"
95 # Install pip and virtualenv for Python 3.5
97 RUN python3.5 -m pip install virtualenv
/external/python/pyfakefs/.travis/
Dinstall.sh26 python -m pip install --user virtualenv
27 python -m virtualenv ~/.venv
/external/grpc-grpc/tools/dockerfile/interoptest/grpc_interop_python/
DDockerfile64 RUN pip install virtualenv
67 # Install pip and virtualenv for Python 3.4
69 RUN python3.4 -m pip install virtualenv
/external/python/pycparser/
DTODO.txt18 Now create a new virtualenv and in it install the tarball with
20 interpreter of this virtualenv; run pycparser tests from this virtualenv.
/external/python/cryptography/docs/development/
Dgetting-started.rst9 be installed in a `virtualenv`_ using `pip`_. Before you install them, follow
17 $ # Create a virtualenv and activate it
75 For this we use `tox`_, which will automatically create a `virtualenv`_ for
115 .. _`virtualenv`: https://pypi.org/project/virtualenv/ target in Building documentation
/external/python/oauth2client/
DCONTRIBUTING.md73 - Create a virtualenv in which to install `oauth2client`:
77 $ virtualenv -ppython2.7 env
80 Note that very old versions of virtualenv (virtualenv versions
85 `-p` flag to `virtualenv`. For example, `virtualenv -ppython2.7`
94 - Install `oauth2client` from the checkout into the virtualenv using
108 `nosetests` from your development virtualenv (See
117 it creates a virtualenv for each version/platform combination. For
/external/grpc-grpc/tools/dockerfile/test/python_jessie_x64/
DDockerfile68 RUN pip install virtualenv
71 # Install pip and virtualenv for Python 3.4
73 RUN python3.4 -m pip install virtualenv
/external/pigweed/pw_env_setup/py/pw_env_setup/
Denv_setup.py255 virtualenv = config.pop('virtualenv', {})
257 if virtualenv.get('gn_root'):
258 root = os.path.join(self._project_root, virtualenv.pop('gn_root'))
262 for target in virtualenv.pop('gn_targets', ()):
266 if virtualenv:
269 config_file.name, next(iter(virtualenv))))
294 ('Python environment', self.virtualenv),
424 def virtualenv(self, unused_spin): member in EnvSetup
/external/python/httplib2/script/
Dtest41 virtualenv --python=python2.7 ./venv-27
44 virtualenv --python=python3.6 ./venv-36
/external/python/cryptography/.travis/
Dinstall.sh61 pip install virtualenv
63 python -m virtualenv ~/.venv
/external/tensorflow/tensorflow/tools/ci_build/builds/
Dnightly_release_smoke_test.sh35 ${PYTHON_BIN_PATH} -m pip install virtualenv
37 ${PYTHON_BIN_PATH} -m virtualenv -p ${PYTHON_BIN_PATH} "${VENV_TMP_DIR}" || \
/external/python/setuptools/tests/
Dtest_pypi.py4 import virtualenv
45 virtualenv.create_environment(package_dir)
/external/grpc-grpc/templates/tools/dockerfile/interoptest/grpc_interop_python/
DDockerfile.template21 # Install pip and virtualenv for Python 3.4
23 RUN python3.4 -m pip install virtualenv
/external/grpc-grpc/templates/tools/dockerfile/test/python_jessie_x64/
DDockerfile.template22 # Install pip and virtualenv for Python 3.4
24 RUN python3.4 -m pip install virtualenv
/external/grpc-grpc/templates/tools/dockerfile/test/python_pyenv_x64/
DDockerfile.template23 # Install pip and virtualenv for Python 3.5
25 RUN python3.5 -m pip install virtualenv
/external/tensorflow/tensorflow/tools/ci_build/
DDockerfile.debian.jessie.cpu22 # Fix a virtualenv install issue specific to Debian Jessie.
23 RUN pip install --upgrade virtualenv

123456789