source venv/bin/activateThe following command creates a file called requirements.txt that enumerates the installed packages.
pip freeze > requirements.txtThis file can then be used by collaborators to update virtual environments using the following command.
pip install -r requirements.txt