Guest User

Untitled

a guest
Aug 15th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. # Set up Python 3 Virtual Environment
  2. apt install python3-venv
  3.  
  4. # Set up a new venv in `env`
  5. python3 -m venv env
  6.  
  7. # Activate the venv
  8. . env/bin/activate
  9.  
  10. # Install dependencies from a requirements.txt file
  11. # Don't forget to include the -r flag
  12. pip install -r /path/to/requirements.txt
Add Comment
Please, Sign In to add comment