I have a Debian system currently running with python 2.5.4. I got virtualenv properly installed, everything is working fine. Is there a possibility that I can use a virtuale
Since Python 3, the Python Docs suggest creating the virtual environment with the following command:
python3 -m venv
Please note that venv
does not permit creating virtual environments with other versions of Python. For that, install and use the virtualenv
package.
The pyvenv
script can be used to create a virtual environment
pyvenv /path/to/new/virtual/environment
but it has been deprecated since Python 3.6.