Answers for "turn on virtual environment python"

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

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 "turn on virtual environment python"

Python Answers by Framework

Browse Popular Code Answers by Language