Open
Description
I'm still learning Python, so I could be way off here. It's from my understanding that virtualenv was a standalone package, and now Python 3 has it built-in? I didn't see that in the guide, but people online seem to repeat this information. For example: http://askubuntu.com/a/353903
This would be in reference to this page: http://docs.python-guide.org/en/latest/dev/virtualenvs/
Metadata
Metadata
Assignees
Labels
No labels
Activity
afq984 commentedon May 31, 2015
+1
https://docs.python.org/3.3/using/scripts.html#pyvenv-creating-virtual-environments
cclauss commentedon Mar 11, 2017
From Python 3.6 docs:
Note
The pyvenv script has been deprecated as of Python 3.6 in favor of using
python3 -m venv
to help prevent any potential confusion as to which Python interpreter a virtual environment will be based on.28.3.1. Creating virtual environments
Creation of virtual environments is done by executing the command venv:
$ python3 -m venv /path/to/new/virtual/environment
$ source /path/to/new/virtual/environment/bin/activate
jhermann commentedon Feb 7, 2020
#1034 should cover this issue.