Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
857aa9bd
Commit
857aa9bd
authored
Aug 21, 2012
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve the pyvenv entry
parent
f175963e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
7 deletions
+18
-7
Doc/using/scripts.rst
Doc/using/scripts.rst
+2
-0
Doc/whatsnew/3.3.rst
Doc/whatsnew/3.3.rst
+16
-7
No files found.
Doc/using/scripts.rst
View file @
857aa9bd
...
...
@@ -3,6 +3,8 @@
Additional Tools and Scripts
============================
.. _scripts-pyvenv:
pyvenv - Creating virtual environments
--------------------------------------
...
...
Doc/whatsnew/3.3.rst
View file @
857aa9bd
...
...
@@ -94,13 +94,22 @@ Please read on for a comprehensive list of user-facing changes.
PEP 405: Virtual Environments
=============================
- inspired by ``virtualenv``, a tool widely used by the community
- change to the interpreter to avoid hacks
The :mod:`venv` module and ``pyvenv`` script (inspired by ``virtualenv``, a
tool widely used by the community).
.. also mention the interpreter changes that avoid the hacks used in virtualenv
:pep:`405` - Python Virtual Environments
PEP written by Carl Meyer, implemented by Carl Meyer and Vinay Sajip.
Virtual environments help create separate Python setups while sharing a
system-wide base install, for ease of maintenance. Virtual environments
have their own set of private site packages (i.e. locally-installed
libraries), and are optionally segregated from the system-wide site
packages. Their concept and implementation are inspired by the popular
``virtualenv`` third-party package, but benefit from tighter integration
with the interpreter core.
This PEP adds the :mod:`venv` module for programmatic access, and the
:ref:`pyvenv <scripts-pyvenv>` script for command-line access and
administration. The Python interpreter becomes aware of a ``pvenv.cfg``
file whose existence signals the base of a virtual environment'
s
directory
tree
.
PEP
420
:
Namespace
Packages
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment