Create a requirements.txt file of all packages on the system
suggest changepip assists in creating requirements.txt files by providing the freeze option.
pip freeze > requirements.txt
This will save a list of all packages and their version installed on the system to a file named requirements.txt in the current folder.
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents