user1481676
user1481676

Reputation: 1

Installation of 3rd party package in Python

How can i Install the 3rd party package in python.? I have setup.py file in 3rd party package.

I need to know steps involved and how to do? Where to write the commands and how to actually do it.

Upvotes: 0

Views: 380

Answers (2)

tbroberg
tbroberg

Reputation: 635

"python setup.py install" - http://docs.python.org/install/index.html

Upvotes: 1

aisbaa
aisbaa

Reputation: 10643

I think something like this would work:

pip install <path to folder>

Also highly recommend using virutalenv or/and zc.buildout

Upvotes: 0

Related Questions