PIP¶
PIP is a great tool for managing Python dependencies.
Installing Dependencies¶
It is a good practice to keep your dependencies separated by what you need to deploy your application and what you need to test your application or run your application locally.
To install development specific dependencies use the following command:
pip install -r requirements/dev.txtTo install production dependencies use the following command:
pip install -r requirements/base.txt