Home
last modified time | relevance | path

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

1234567891011

/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}" || \
38 die "FAILED: Unable to create virtualenv"
41 die "FAILED: Unable to activate virtualenv "
59 # Deactivate from virtualenv.
60 deactivate || source deactivate || die "FAILED: Unable to deactivate from existing virtualenv."
75 echo "PIP test on virtualenv FAILED, will not upload ${WHL_NAME} package."
83 echo "PIP test on virtualenv FAILED, will not upload ${WHL_NAME} package."
91 echo "PIP test on virtualenv FAILED, will not upload ${WHL_NAME} package."
Dpip_new.sh308 # Check if in a virtualenv and exit if yes.
309 # TODO(rameshsampath): Python 3.10 has pip conflicts when using global env, so build in virtualenv
310 # Once confirmed to work, run builds for all python env in a virtualenv
314 echo "It appears that we are already in a virtualenv. Deactivating..."
315 deactivate || source deactivate || die "FAILED: Unable to deactivate from existing virtualenv."
364 # Create virtualenv directory for test
367 # Activate virtualenv
389 echo "PIP test on virtualenv (non-clean) FAILED"
400 … deactivate || source deactivate || die "FAILED: Unable to deactivate from existing virtualenv."
409 # Deactivate from virtualenv.
[all …]
/external/tflite-support/tensorflow_lite_support/tools/ci_build/builds/
Dpip_smoke_test.sh30 ${PYTHON_BIN_PATH} -m virtualenv -p ${PYTHON_BIN_PATH} "${VENV_TMP_DIR}" || \
31 die "FAILED: Unable to create virtualenv"
35 die "FAILED: Unable to activate virtualenv "
38 die "FAILED: Unable to activate virtualenv "
57 # Deactivate from virtualenv.
59 die "FAILED: Unable to deactivate from existing virtualenv."
76 echo "PIP smoke test on virtualenv FAILED, do not upload ${WHL_NAME}."
97 echo "PIP smoke test on virtualenv FAILED, do not upload ${WHL_NAME}."
/external/pigweed/pw_env_setup/py/pw_env_setup/
Denv_setup.py361 virtualenv = config.pop('virtualenv', {})
363 if virtualenv.get('gn_root'):
364 root = os.path.join(self._project_root, virtualenv.pop('gn_root'))
368 for target in _assert_sequence(virtualenv.pop('gn_targets', ())):
374 virtualenv.pop('gn_args', ())
377 self._virtualenv_system_packages = virtualenv.pop(
381 for req_txt in _assert_sequence(virtualenv.pop('requirements', ())):
387 virtualenv.pop('constraints', ())
394 virtualenv.pop('pip_install_find_links', ())
398 self._virtualenv_pip_install_disable_cache = virtualenv.pop(
[all …]
/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/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/grpc-grpc/tools/buildgen/
Dgenerate_projects.sh37 # /usr/local/google/home/rbellevi/dev/tmp/grpc/venv/bin/python3: No module named virtualenv
40 if ! python3 -m pip freeze | grep virtualenv &>/dev/null; then
41 echo "virtualenv Python module not installed. Attempting to install via pip." >/dev/stderr
42 if INSTALL_OUTPUT=$(! python3 -m pip install virtualenv --upgrade &>/dev/stdout); then
47 …aging your packages themself. Try running \`sudo apt-get install python3-virtualenv\`" >/dev/stderr
53 python3 -m virtualenv generate_projects_virtual_environment
/external/python/google-api-python-client/
DREADME.md72 Install this library in a [virtualenv](https://virtualenv.pypa.io/en/latest/) using pip. virtualenv
76 With virtualenv, it's possible to install this library without needing system
83 pip install virtualenv
84 virtualenv <your-env>
92 pip install virtualenv
93 virtualenv <your-env>
/external/python/python-api-core/scripts/readme-gen/templates/
Dinstall_deps.tmpl.rst10 #. Install `pip`_ and `virtualenv`_ if you do not already have them. You may want to refer to the `…
15 #. Create a virtualenv. Samples are compatible with Python 3.6+.
19 $ virtualenv env
29 .. _virtualenv: https://virtualenv.pypa.io/ target
/external/python/google-api-python-client/scripts/readme-gen/templates/
Dinstall_deps.tmpl.rst10 #. Install `pip`_ and `virtualenv`_ if you do not already have them. You may want to refer to the `…
15 #. Create a virtualenv. Samples are compatible with Python 3.6+.
19 $ virtualenv env
29 .. _virtualenv: https://virtualenv.pypa.io/ target
/external/python/setuptools/setuptools.egg-info/
Drequires.txt25 virtualenv>=13.0.0
31 build[virtualenv]
41 virtualenv>=13.0.0
46 build[virtualenv]
/external/python/httplib2/
D.travis.yml47 - deactivate && rm -rf $HOME/virtualenv
49 … - pip install virtualenv && virtualenv $HOME/virtualenv && source $HOME/virtualenv/bin/activate
/external/grpc-grpc/tools/distrib/
Dblack_code.sh32 VIRTUALENV=black_virtual_environment
34 python3 -m virtualenv $VIRTUALENV -p $(which python3)
35 PYTHON=${VIRTUALENV}/bin/python
Disort_code.sh36 VIRTUALENV=isort_virtual_environment
38 python3 -m virtualenv $VIRTUALENV
39 PYTHON=${VIRTUALENV}/bin/python
Dpylint_code.sh39 VIRTUALENV=python_pylint_venv
40 python3 -m virtualenv $VIRTUALENV -p $(which python3)
42 PYTHON=$VIRTUALENV/bin/python
/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/rust/crates/grpcio-sys/grpc/tools/distrib/
Dyapf_code.sh32 VIRTUALENV=yapf_virtual_environment
34 python3 -m virtualenv $VIRTUALENV -p $(which python3)
35 PYTHON=${VIRTUALENV}/bin/python
Disort_code.sh37 VIRTUALENV=isort_virtual_environment
39 python3 -m virtualenv $VIRTUALENV
40 PYTHON=${VIRTUALENV}/bin/python
Dpylint_code.sh41 VIRTUALENV=python_pylint_venv
42 python3 -m virtualenv $VIRTUALENV -p $(which python3)
44 PYTHON=$VIRTUALENV/bin/python
/external/pigweed/pw_env_setup/
Ddocs.rst255 A list of plugins to load and run after CIPD setup, but prior to virtualenv
293 ``pw.pw_env_setup.virtualenv.gn_args``
296 ``pw.pw_env_setup.virtualenv.gn_targets``
300 ``pw.pw_env_setup.virtualenv.gn_root``
306 ``pw.pw_env_setup.virtualenv.requirements``
308 virtualenv. Each file will be passed as additional ``--requirement`` argument
313 ``pw.pw_env_setup.virtualenv.constraints``
316 bootstrap. virtualenv. See the `Constraints Files documentation`_ for details
319 ``pw.pw_env_setup.virtualenv.system_packages``
323 ``pw.pw_env_setup.virtualenv.pip_install_offline``
[all …]
/external/python/bumble/rust/
DREADME.md13 Set up a virtualenv for Bumble, or otherwise have an isolated Python environment
18 it's necessary to explicitly point to the virtualenv's `site-packages`. Use
19 suitable virtualenv paths as appropriate for your OS, as seen here running
36 PYTHONPATH=..:[virtualenv site-packages] \
/external/tensorflow/tensorflow/python/debug/examples/v1/
Dexamples_v1_debug_fibonacci_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 debug_fibonacci against virtualenv pip install."
Dexamples_v1_debug_mnist_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."
Dexamples_v1_debug_errors_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 debug_errors against virtualenv pip install."
/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

1234567891011