Searched refs:venv (Results 1 – 25 of 79) sorted by relevance
1234
/third_party/python/Doc/using/ |
D | venv-create.inc | 1 Creation of :ref:`virtual environments <venv-def>` is done by executing the 2 command ``venv``:: 4 python3 -m venv /path/to/new/virtual/environment 9 was run (a common name for the target directory is ``.venv``). It also creates 23 The use of ``venv`` is now recommended for creating virtual environments. 27 On Windows, invoke the ``venv`` command as follows:: 29 c:\>c:\Python35\python -m venv c:\path\to\myenv 34 c:\>python -m venv c:\path\to\myenv 38 usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear] 98 ``include-system-site-packages`` key, set to ``true`` if ``venv`` is [all …]
|
/third_party/json/doc/mkdocs/ |
D | Makefile | 3 venv/bin/mkdocs serve 22 venv/bin/mkdocs gh-deploy --clean --force 26 python3 -mvenv venv 27 venv/bin/pip install -r requirements.txt 31 rm -fr venv
|
/third_party/boost/libs/gil/doc/ |
D | README.md | 17 $ python3 -m venv .venv 18 $ source ~/.venv/bin/activate 24 (.venv)$ cd boost-root 25 (.venv)$ pip install -r libs/gil/doc/requirements.txt
|
/third_party/python/Lib/test/ |
D | test_venv.py | 21 import venv 99 self.run_with_capture(venv.create, self.env_dir) 126 builder = venv.EnvBuilder() 134 builder = venv.EnvBuilder(prompt='My prompt') 142 builder = venv.EnvBuilder(prompt='.') 151 builder = venv.EnvBuilder() 187 self.run_with_capture(venv.create, self.env_dir) 232 venv.create(self.env_dir) 239 builder = venv.EnvBuilder(clear=True) 259 self.assertRaises((ValueError, OSError), venv.create, self.env_dir) [all …]
|
/third_party/python/Tools/peg_generator/ |
D | Makefile | 8 VENVDIR ?= ./venv 46 venv: target 47 $(PYTHON) -m venv $(VENVDIR) 72 time_compile: venv data/xxl.py 75 time_parse: venv data/xxl.py 78 time_peg_dir: venv 86 time_stdlib: $(CPYTHON) venv
|
D | .gitignore | 3 venv/
|
/third_party/openssl/test/recipes/95-test_external_pyca_data/ |
D | cryptography.sh | 38 rm -rf venv-pycrypto 39 virtualenv venv-pycrypto 40 . ./venv-pycrypto/bin/activate 61 rm -rf venv-pycrypto
|
/third_party/protobuf/python/ |
D | release.sh | 17 virtualenv -p `which $PYTHON` --no-setuptools test-venv 21 touch test-venv/bin/protoc 22 chmod +x test-venv/bin/protoc 24 source test-venv/bin/activate 28 rm -fr test-venv
|
/third_party/grpc/tools/run_tests/artifacts/ |
D | build_artifact_python.sh | 139 "${PYTHON}" -m virtualenv venv || { "${PYTHON}" -m pip install virtualenv==16.7.9 && "${PYTHON}" -m… 140 venv/bin/python -m pip install "twine<=2.0" 141 venv/bin/python -m twine check dist/* tools/distrib/python/grpcio_tools/dist/* 142 rm -rf venv/
|
/third_party/python/Doc/ |
D | Makefile | 8 VENVDIR = ./venv 25 autobuild-dev autobuild-stable venv 140 clean: clean-venv 143 clean-venv: 146 venv: target 151 $(PYTHON) -m venv $(VENVDIR); \
|
D | README.rst | 34 make venv 37 The virtual environment in the ``venv`` directory will contain all the tools 55 * "clean-venv", which removes the virtual environment directory. 57 * "venv", which creates a virtual environment with all necessary tools
|
/third_party/protobuf/kokoro/docs/ |
D | publish-python.sh | 20 python3.6 -m venv venv 21 source venv/bin/activate
|
/third_party/skia/third_party/externals/freetype/docs/ |
D | README | 1 After saying `make refdoc' or `make refdoc-venv' the `reference/' directory 14 2. Using `make refdoc-venv' (requires internet access): 17 - Make target with `make refdoc-venv'.
|
/third_party/freetype/docs/ |
D | README | 1 After saying `make refdoc' or `make refdoc-venv' the `reference/' directory 14 2. Using `make refdoc-venv' (requires internet access): 17 - Make target with `make refdoc-venv'.
|
/third_party/flutter/skia/third_party/externals/freetype/docs/reference/ |
D | README | 1 After saying `make refdoc' or `make refdoc-venv' the `site/' directory 14 2. Using `make refdoc-venv' (requires internet access): 17 - Make target with `make refdoc-venv'.
|
/third_party/node/tools/gyp/ |
D | .gitignore | 110 .venv 112 venv/ 115 venv.bak/
|
/third_party/python/Doc/tutorial/ |
D | venv.rst | 2 .. _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 53 A common directory location for a virtual environment is ``.venv``.
|
/third_party/grpc/tools/run_tests/helper_scripts/ |
D | build_python.sh | 66 function venv() { function 108 VENV=${2:-$(venv "$PYTHON")}
|
/third_party/python/Lib/venv/scripts/posix/ |
D | activate.fish | 1 # This file must be used with "source <venv>/bin/activate.fish" *from fish* 55 # Output the venv prompt; color taken from the blue of the Python logo.
|
/third_party/grpc/examples/python/xds/ |
D | README.md | 20 virtualenv venv -p python3 21 source venv/bin/activate
|
/third_party/python/Doc/installing/ |
D | index.rst | 40 * ``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 66 The use of ``venv`` is now recommended for creating virtual environments. 111 Creation of virtual environments is done through the :mod:`venv` module.
|
/third_party/python/Doc/library/ |
D | venv.rst | 1 :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 36 .. include:: /using/venv-create.inc 128 * ``upgrade_deps`` -- Update the base venv modules to the latest on PyPI 197 Upgrades the core venv dependency packages (currently ``pip`` and 282 import venv 284 class ExtendedEnvBuilder(venv.EnvBuilder):
|
D | distribution.rst | 14 venv.rst
|
/third_party/json/ |
D | .gitignore | 30 doc/mkdocs/venv/
|
/third_party/python/ |
D | .gitignore | 54 Doc/venv/ 55 Doc/.venv/
|
1234