Home
last modified time | relevance | path

Searched refs:venv (Results 1 – 25 of 51) sorted by relevance

123

/external/python/httplib2/script/
Dtest40 if [[ ! -d ./venv-27 ]] ; then
41 virtualenv --python=python2.7 ./venv-27
43 if [[ ! -d ./venv-36 ]] ; then
44 virtualenv --python=python3.6 ./venv-36
47 ./venv-27/bin/pip install -e . -r requirements-test.txt
48 ./venv-27/bin/pytest ${test_flags[@]}
49 ./venv-36/bin/pip install -e . -r requirements-test.txt
50 ./venv-36/bin/pytest ${test_flags[@]}
58 ./venv-36/bin/python setup.py sdist
Drelease92 local venv=./venv-release
93 if [[ ! -d "$venv" ]] ; then
94 virtualenv $venv
95 $venv/bin/pip install -U pip setuptools wheel twine
97 $venv/bin/python setup.py sdist
100 $venv/bin/twine upload dist/* || exit 1
/external/python/cpython3/Doc/using/
Dvenv-create.inc1 Creation of :ref:`virtual environments <venv-def>` is done by executing the
2 command ``venv``::
4 python3 -m venv /path/to/new/virtual/environment
22 The use of ``venv`` is now recommended for creating virtual environments.
26 On Windows, invoke the ``venv`` command as follows::
28 c:\>c:\Python35\python -m venv c:\path\to\myenv
33 c:\>python -m venv c:\path\to\myenv
37 usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear]
81 ``include-system-site-packages`` key, set to ``true`` if ``venv`` is
87 Multiple paths can be given to ``venv``, in which case an identical virtual
[all …]
/external/python/cpython3/Lib/test/
Dtest_venv.py20 import venv
87 self.run_with_capture(venv.create, self.env_dir)
113 builder = venv.EnvBuilder()
117 builder = venv.EnvBuilder(prompt='My prompt')
132 self.run_with_capture(venv.create, self.env_dir)
177 venv.create(self.env_dir)
184 builder = venv.EnvBuilder(clear=True)
204 self.assertRaises((ValueError, OSError), venv.create, self.env_dir)
215 builder = venv.EnvBuilder(upgrade=upgrade)
233 builder = venv.EnvBuilder(clear=True, system_site_packages=ssp)
[all …]
/external/fonttools/.travis/
Dinstall.sh14 python -m virtualenv .venv/
22 python3 -m virtualenv .venv/
27 source .venv/bin/activate
Dafter_success.sh7 source .venv/bin/activate
Drun.sh7 source .venv/bin/activate
/external/python/cpython3/Tools/scripts/
Dpyvenv12 import venv
13 venv.main()
/external/autotest/bin/
Dpython_venv58 readonly extra_imports_dir=$(realpath ../venv)
61 ERROR: ${bin_dir}/../venv does not exist
/external/python/cpython3/Doc/
DMakefile8 VENVDIR = ./venv
20 autobuild-dev autobuild-stable venv
124 venv: target
125 $(PYTHON) -m venv $(VENVDIR)
DREADME.rst33 make venv
36 the virtual environment was created in the ``venv`` directory (the default;
54 * "venv", which creates a virtual environment with all necessary tools
/external/python/pyasn1/docs/source/
Ddownload.rst15 $ virtualenv venv
16 $ source venv/bin/activate
/external/grpc-grpc/tools/run_tests/helper_scripts/
Dbuild_python.sh60 function venv() { function
100 VENV=${2:-$(venv "$PYTHON")}
/external/python/setuptools/setuptools/tests/
Dtest_virtualenv.py38 )) as venv:
39 yield venv
/external/python/rsa/doc/
Dinstallation.rst40 virtualenv -p /path/to/your-python-version python-rsa-venv
41 . python-rsa-venv/bin/activate
/external/python/cpython3/Doc/tutorial/
Dvenv.rst2 .. _tut-venv:
39 :mod:`venv`. :mod:`venv` will usually install the most recent version of
45 place it, and run the :mod:`venv` module as a script with the directory path::
47 python3 -m venv tutorial-env
/external/python/cpython3/
D.gitignore28 Doc/venv/
29 Doc/.venv/
/external/python/cpython3/Doc/library/
Dvenv.rst1 :mod:`venv` --- Creation of virtual environments
4 .. module:: venv
12 **Source code:** :source:`Lib/venv/`
18 The :mod:`venv` module provides support for creating lightweight "virtual
34 ``python3 -m venv`` to help prevent any potential confusion as to which
41 .. include:: /using/venv-create.inc
263 import venv
265 class ExtendedEnvBuilder(venv.EnvBuilder):
Ddistribution.rst14 venv.rst
/external/python/pyasn1/
D.gitignore25 venv*
/external/python/cpython3/Doc/installing/
Dindex.rst40 * ``venv`` is the standard tool for creating virtual environments, and has
44 ``venv``. It allows virtual environments to be used on versions of
45 Python prior to 3.4, which either don't provide ``venv`` at all, or
71 The use of ``venv`` is now recommended for creating virtual environments.
116 Creation of virtual environments is done through the :mod:`venv` module.
/external/python/httplib2/
D.gitignore30 venv*/
Dsetup.cfg5 exclude = *.egg*,.env,.git,.tox,_*,build*,dist*,venv*,python2/,python3/
/external/fonttools/
DREADME.rst38 Python 3 `venv <https://docs.python.org/3/library/venv.html>`__ module.
46 # create new virtual environment called e.g. 'fonttools-venv', or anything you like
47 python -m virtualenv fonttools-venv
50 . fonttools-venv/bin/activate
53 fonttools-venv\Scripts\activate.bat
/external/python/dateutil/
DCONTRIBUTING.md78 python -m virtualenv .venv # Create virtual environment in .venv directory
79 . .venv/bin/activate # Activate the virtual environment

123