1#------FOR LINUX/MAC---------#
2#installing venv
3sudo apt-get install python3.6-venv
4#creating virtual env
5python3 -m venv env
6#activating virtual env
7source env/bin/activate
8
9
10#-------FOR WINDOWS----------#
11#installing venv
12py -m pip install --user virtualenv
13#creating virtual env
14py -m venv env
15#activating virtual env
16.\env\Scripts\activate
17
1python3 -m venv env
2python -m virtualenv env #py2
3
4source env/bin/activate
5
6#all this is on same directory
7
1# Create the virtual environment.
2python -m venv venv
3
4# Activate the env.
5venv\Scripts\activate.bat
1# for windows 10
2
3py -m venv myvirtualenv
4myvirtualenv\Scripts\activate #!!!! use "\" not "/" !!!!!
1pip install virtualenv # install first
2cd projectfolder # go to project folder
3python -m venv ./venv # Create a virtual environment named venv
4Activate.ps1 # (powershell) start the file to start the environment
5activate.bat # (cmd) start the file to start the environment
6# if it worked you'll see a (venv) in front of your cursor path