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. All the packages needed for this project is installed in a Virtual environment. How can I copy or clone this virtual environment to my Local machine to run this Project.
Share
pip freeze > requirements.txton the remote machinerequirements.txtfile to your local machinepip install -r requirements.txtAnd, so long as all of the requirements are well behaved Python packages, you should be good to go.