python install required packages

Solutions on MaxInterview for python install required packages by the best coders in the world

showing results for - "python install required packages"
Charly
25 Aug 2017
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