Home
last modified time | relevance | path

Searched full:virtualenv (Results 1 – 25 of 144) sorted by relevance

123456

/external/tensorflow/tensorflow/tools/ci_build/builds/
Dpip.sh32 # to be installed in virtualenv before run_pip_tests.sh is called. Multiple
153 # Check if in a virtualenv
155 # If still in a virtualenv, deactivate it first
157 echo "It appears that we are already in a virtualenv. Deactivating..."
158 deactivate || die "FAILED: Unable to deactivate from existing virtualenv"
269 # Create and activate a virtualenv; then install tensorflow pip package in it.
276 # --clean: Create a clean virtualenv, i.e., without --system-site-packages.
277 # VIRTUALENV_DIR: virtualenv directory to be created.
279 # virtualenv.
292 echo "Removed existing virtualenv directory: ${VIRTUALENV_DIR}"
[all …]
Dpip_new.sh275 # Check if in a virtualenv and exit if yes.
278 echo "It appears that we are already in a virtualenv. Deactivating..."
279 deactivate || source deactivate || die "FAILED: Unable to deactivate from existing virtualenv."
316 # Create virtualenv directory for test
319 # Activate virtualenv
341 echo "PIP test on virtualenv (non-clean) FAILED"
352 … deactivate || source deactivate || die "FAILED: Unable to deactivate from existing virtualenv."
361 # Deactivate from virtualenv.
362 deactivate || source deactivate || die "FAILED: Unable to deactivate from existing virtualenv."
385 echo "Removed existing virtualenv directory: ${VIRTUALENV_DIR}"
[all …]
Drun_pip_tests.sh21 # run_pip_tests.sh [--virtualenv] [--gpu] [--mac] [--oss_serial]
23 # If the flag --virtualenv is set, the script will use "python" as the Python
51 if [[ "$1" == "--virtualenv" ]]; then
70 # virtualenv, because we are deleting and recreating it here.
112 # virtualenv.
Dintegration_tests.sh20 # Usage: integration_tests.sh [--virtualenv]
22 # If the flag --virtualenv is set, the script will use "python" as the Python
80 if [[ "$1" == "--virtualenv" ]]; then
87 die "PYTHON_BIN_PATH was not provided. If this is not virtualenv, "\
/external/python/setuptools/setuptools/tests/
Dtest_virtualenv.py16 def pytest_virtualenv_works(virtualenv): argument
21 venv_prefix = virtualenv.run(
26 pytest.skip("virtualenv is broken (see pypa/setuptools#1284)")
32 """ Bare virtualenv (no pip/setuptools/wheel).
34 with pytest_virtualenv.VirtualEnv(args=(
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)
[all …]
/external/fonttools/.travis/
Dinstall.sh13 python -m pip install --user virtualenv
14 python -m virtualenv .venv/
21 python3 -m pip install virtualenv
22 python3 -m virtualenv .venv/
/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/distrib/
Dpylint_code.sh32 VIRTUALENV=python_pylint_venv
33 python -m virtualenv $VIRTUALENV
35 PYTHON=$VIRTUALENV/bin/python
Dyapf_code.sh31 VIRTUALENV=yapf_virtual_environment
33 python -m virtualenv $VIRTUALENV
34 PYTHON=${VIRTUALENV}/bin/python
/external/autotest/bin/
Dpython_venv6 # Starts a python interpreter in virtualenv.
8 # This script will set up a virtualenv when it has not been created yet and
12 # See infra_virtualenv/README.md about how to adopt virtualenv to your project.
69 echo "ERROR: Failed to set up a virtualenv." >&2
/external/python/setuptools/tests/
Dmanual_test.py56 """virtualenv with setuptools"""
58 _system_call('virtualenv', '--no-site-packages', '.')
72 """virtualenv + pip + buildout"""
73 _system_call('virtualenv', '--no-site-packages', '.')
/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/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/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/tensorflow/tensorflow/python/debug/examples/
Dexamples_test.sh21 # --virtualenv: (optional) If set, will test the examples and binaries
22 # against pip install of TensorFlow in a virtualenv.
34 elif [[ "$1" == "--virtualenv" ]]; then
40 echo "Will test tfdbg examples and binaries against virtualenv pip install."
/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/python/cpython2/Doc/installing/
Dindex.rst40 * ``virtualenv`` is a third party tools for creating virtual environments, it
75 ``virtualenv`` to provide such environments using either pip
76 (``pip install virtualenv``) or through your system package manager
77 (commonly called ``virtualenv`` or ``python-virtualenv``).
/external/flatbuffers/conan/travis/
Dinstall.sh9 brew install pyenv-virtualenv
17 pyenv virtualenv 2.7.10 conan
/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/tensorflow/tensorflow/tools/ci_build/
DDockerfile.debian.jessie.cpu22 # Fix a virtualenv install issue specific to Debian Jessie.
23 RUN pip install --upgrade 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/tensorflow/tensorflow/tools/ci_build/install/
Dinstall_pip_packages.sh39 pip2 install virtualenv
40 pip3 install virtualenv
66 # Remove obsolete version of six, which can sometimes confuse 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/grpc-grpc/tools/run_tests/helper_scripts/
Dbuild_python.sh131 # Instantiate the virtualenv from the Python version passed in.
132 $PYTHON -m pip install --user virtualenv
133 $PYTHON -m virtualenv "$VENV"
/external/grpc-grpc/templates/tools/dockerfile/test/multilang_jessie_x64/
DDockerfile.template28 # Install pip and virtualenv for Python 3.4
30 RUN python3.4 -m pip install virtualenv

123456