Python Virtual Environment | Windows - Linux
In Windows
if you configured the PATH and PATHEXT variables for your Python installation:
c:\>python -m venv c:\path\to\myenv
In Linux
python -m venv /path/to/new/virtual/environment
https://www.geeksforgeeks.org/creating-python-virtual-environment-windows-linux/
Comments
Post a Comment