I constantly find myself rewriting these instructions over and over again, so I figured that I'll write 'em once and reference this document when needed.
- There is a file in the root directory named
requirements.txt. This file should be hold all of the packages required for the project. This file can be generated by runningpip freeze > requirements.txton UNIX based systems. - That the project is using Python 3. Most of my projects are written in Python 3, so this condition will usually be true. If this not the case, it will be explictly written as such in the
README.md. The only major change to use Python 2 is to replacepython=3withpython=2when the step comes.
If you already have pip installed (Just try running pip from the command line), simply