1# This is assuming there is a requirements.txt and pip is funtional.
2# Open up a terminal window and navigate to the directory the requirements file is stored in.
3
4# For windows:
5py -3 -m pip install -r requirements.txt
6# For linux & Mac:
7python -m pip install -r requirements.txt