Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. # Create the virtual environment
  2. python3 -m venv .venv
  3.  
  4. # configure created venv in your shell (vscode will do this automatically if you use a new shell)
  5. source .venv/bin/activate
  6. # or if you are using fish shell:
  7. . .venv/bin/activate.fish
  8.  
  9. pip install -r requirements/local.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement