How to install Python packages with pip and requirements.txt

cd to the directory where requirements.txt is located.
activate your virtualenv.
execute pip install -r requirements.txt in your terminal

Leave a comment