python setup not installing required packages code example
Example: python install required packages
# This is assuming there is a requirements.txt and pip is funtional.
# Open up a terminal window and navigate to the directory the requirements file is stored in.
# For windows:
py -3 -m pip install -r requirements.txt
# For linux & Mac:
python -m pip install -r requirements.txt