PepeTheRoya

Requirements file tutorial

May 10th, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. Video Link: https://www.youtube.com/watch?v=GfgeWlsEO_w&feature=youtu.be
  2.  
  3. You can also use Git Bash terminal/console if you want to
  4. link: https://git-scm.com/downloads
  5.  
  6. **NOTE**: Only include "py -3" if you actually have python3 installed and same goes with linux, "python3" only use that and make sure you have pip installed
  7.  
  8. # Linux pip installation
  9. sudo apt-get python3-pip
  10.  
  11. # Windows pip installation
  12. you should get it when installing python depending on which version but here is a link for solution
  13. https://matthewhorne.me/how-to-install-python-and-pip-on-windows-10/
  14.  
  15. # Linux
  16. python3 -m pip install -r requirements.txt
  17.  
  18. # Windows
  19. py -3 -m pip install -r requirements.txt
Add Comment
Please, Sign In to add comment