Answers for "how to make a virtaul environmnet on CMD"

9

create a venv

# Create the virtual environment.
python -m venv venv

# Activate the env.
venv\Scripts\activate.bat
Posted by: Guest on June-16-2020
0

how to activate python virtual environment

#open directory with terminal where you crated vertual environment
#example your venv name <visualscrapy>
teamspirit:~$ cd visualscrapy
#teamspirit:~/visualscrapy$  <-- output
#Now type bellow command
source ./bin/activate
#(visualscrapy) teamspirit:~/visualscrapy$   &
Posted by: Guest on December-23-2020

Code answers related to "how to make a virtaul environmnet on CMD"

Python Answers by Framework

Browse Popular Code Answers by Language