Python Reminders

Activating Python Virtual Envornment

Creater requirements.txt from all the installed packages in a virtual env:
First activate the virtualenv, then run:

pip freeze > requirements.txt.

Requirements.txt can also be installed from (though make sure you’re in your virtualenv first) using:

pip install -r requirements.txt