Praveen Jayapal
Praveen Jayapal

Reputation: 73

How to install all my python modules in single shot

I am a beginner in python. I have done a website using django, flask, xml, wtforms and also i have used some API python modules too. The website was successfully created and working well in local machine.

But if i want to run in an another python available machine, i am in the need of install all my above mentioned modules manually.

Do we have something similar to gradle, maven or ant which will download/install the required modules during my first run?

Kindly help me.

Upvotes: 0

Views: 236

Answers (1)

Carl Kristensen
Carl Kristensen

Reputation: 481

One way is to freeze your current local python installations into a requirements.txt file and then install everything in one go in another machine.

$ pip freeze > requirements.txt

copy the requirements file into another machine, install python and then ...

$ pip install -r requirements.txt

Upvotes: 1

Related Questions