You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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:
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/
The text was updated successfully, but these errors were encountered: