generate pip requirements.txt code example
Example 1: install requirements.txt in pip command
note: yor should be on the same dir as requirements.txt file
pip install -r 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.