create requirements txt pip code example
Example 1: command to make requirements.txt
pip freeze > requirements.txt
Example 2: python generate requirements.txt
# First:
pip install pipreqs
# Then:
pipreqs path/to/project
# There is now a requirements.txt file in the project folder.