54
- Run
pip freeze > requirements.txt
on the remote machine - Copy that
requirements.txt
file to your local machine - In your local virtual environment, run
pip install -r requirements.txt
And, so long as all of the requirements are well behaved Python packages, you should be good to go.
2
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
- [Django]-Using django-admin on windows powershell
- [Django]-Django: timezone.now vs timezone.now()
- [Django]-Django 1.4 โ can't compare offset-naive and offset-aware datetimes
Source:stackexchange.com