Virtuelle Python -Umgebung
python3 -m venv env
python -m virtualenv env #py2
source env/bin/activate
#all this is on same directory
Modern Mosquito
python3 -m venv env
python -m virtualenv env #py2
source env/bin/activate
#all this is on same directory
# for windows 10
py -m venv myvirtualenv
myvirtualenv\Scripts\activate #!!!! use "\" not "/" !!!!!
python3 -m pip install --user virtualenv
python -m venv myenv
myenv/Scripts/activate
source env/bin/activate
How to make a virtual environment in Python! (Windows)
py -m venv [virtual environment name]
[virtual environment name]\Scripts\activate #use "\" not "/"
DO YOUR CODE IN HERE, SAVES TIME WITH PACKAGE MANAGEMENT!