[Django]-Moving an existing Django project into a virtual environment

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.

Leave a comment