generate requirements.txt from pipfile code example
Example 1: pipenv freeze requirements.txt
pipenv lock -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.