Answers for "python environs import env"

1

python virtual env

$ pip install virtualenv
Posted by: Guest on April-09-2020
0

python virtual enviroment

# create new environment named my_env
python3 -m venv my_env

# activate
source my_env/bin/activate

# deactivate
deactivate
Posted by: Guest on November-27-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language