Pip install list in requirements.txt

Create a virtual environment

when you run this command you will get the list of all the python packages installed in your machine



pip freeze > requirements.txt # Python3

pip freeze > requirements.txt # Python2

Comments