5👍
use pip freeze > requirements.txt
to output the installed packages in the requirements format. The use pip install -r requirements.txt
inside your virtual environment for install the packages.
Hope this helps.
Source:stackexchange.com
5👍
use pip freeze > requirements.txt
to output the installed packages in the requirements format. The use pip install -r requirements.txt
inside your virtual environment for install the packages.
Hope this helps.