Reputation: 1
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
Reputation: 635
"python setup.py install" - http://docs.python.org/install/index.html
Upvotes: 1
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