views:

129

answers:

2

Ok, so i've downloaded the following library: http://www.lag.net/paramiko/

and i can't seem to figure out how to install on my local machine: Mac OS X 10.4.11

+3  A: 

To use the package that you got from the web-site: "python setup.py install "

My advice is to use easy_install instead of downloading packages straight from the project web-site.

To do this, you must first install setuptools.

Then just use the command "easy_install paramiko".

As you use lots of different packages, this ends up saving you lots of hassle.

John Mulder
Note that setuptools, though very commonly used, is non-standard. The standard is to use the package's `setup.py` directly.
bignose
A: 

http://docs.python.org/install/index.html

jwp