It would greatly benefit to include a requirements.txt file for each project you have on github. This will make it much easier for a dev to grab the starter/finished content and grab the exact packages + exact versions you used.
Just run this command to output all of your project dependencies and add the file to source control!
pip freeze > requirements.txt
It would greatly benefit to include a requirements.txt file for each project you have on github. This will make it much easier for a dev to grab the starter/finished content and grab the exact packages + exact versions you used.
Just run this command to output all of your project dependencies and add the file to source control!