Advertisement
funcelot

install_requirements.sh

Feb 3rd, 2020
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.24 KB | None | 0 0
  1. #!/bin/bash -e
  2. [ -d "/home/venv" ] && rm -rf /home/venv
  3. python3 -m venv /home/venv
  4. source /home/venv/bin/activate
  5. python3.8 -m pip install --upgrade pip setuptools wheel
  6. python3.8 -m pip install -r requirements.txt
  7. #code goes here
  8.  
  9. deactivate
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement