Answers for "import environ python"

1

activate virtual environment python

Install venv with this command:
	pip install virtual env
    
Create a directory and type the following command in terminal:
	python -m venv virtual <-- "The last word in command is the name of the venv, you can call it whatever you want."
    
Activate virtual environment:
	source virtual/bin/activate
Posted by: Guest on October-13-2020
0

activate python virtual environment

# activate python enviroment with global packages

python -m venv env --system-site-packages
Posted by: Guest on May-15-2021

Browse Popular Code Answers by Language