Answers for "how to activate environment in python venv"

57

python virtual environment

python3 -m venv env
python -m virtualenv env #py2

source env/bin/activate

#all this is on same directory
Posted by: Guest on June-05-2020
0

activate venv in python

(tutorial-env) $ pip freeze > requirements.txt
(tutorial-env) $ cat requirements.txt
novas==3.1.1.3
numpy==1.9.2
requests==2.7.0
Posted by: Guest on December-19-2020

Code answers related to "how to activate environment in python venv"

Python Answers by Framework

Browse Popular Code Answers by Language