Python 'requirements.txt' File
The file can be generated with command:
pip freeze > requirements.txt
The file is used to track python package dependencies.
To install packages listed in requirements file:
pip install -r requirements.txt
The file can be generated with command:
pip freeze > requirements.txt
The file is used to track python package dependencies.
To install packages listed in requirements file:
pip install -r requirements.txt