I have an existing Python django Project running in Web Server. Now the client needs to make some changes in the existing code. So I need to set it up in my Local Machine. A
Please using Freeze command and you will get text file with all the versions of packages. Then install them using easy install or pip install
pip freeze > requirements.txt
on the remote machinerequirements.txt
file to your local machinepip install -r requirements.txt
And, so long as all of the requirements are well behaved Python packages, you should be good to go.