pip install -r requirements.txt
The command can be used to install all dependencies which are required to run your python application. The dependencies must be in the requirement.txt file. To generate a requirement.txt file you can use below command
pip freeze > requirements.txt
0 Comments