In the django project, create a requirments.txt file. As, anyone who wan't to see it will not have any idea of which version of django you are using and so on.
So, basically try the command
pip freeze
It will list out all things related to python u have on your comp.
Now,
pip freeze > requirements.txt
will create a file with the same info. Put this file in the django projects.
Now, in the readme, make a section for "setting up the project" and mention that all libraries required for the project are listen in ..../requirements.txt
Hi,
In the django project, create a requirments.txt file. As, anyone who wan't to see it will not have any idea of which version of django you are using and so on.
So, basically try the command
It will list out all things related to python u have on your comp. Now,
will create a file with the same info. Put this file in the django projects. Now, in the readme, make a section for "setting up the project" and mention that all libraries required for the project are listen in ..../requirements.txt