安装Python库
好的,我已经下载了以下库: http://www.lag.net/paramiko/
我似乎不明白如何在我的本地计算机上安装: Mac OS X 10.4.11
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使用从网站获取的包:“python setup.py install
"
我的建议是使用 easy_install 而不是直接从项目网站下载软件包。
为此,您必须首先安装 setuptools。
然后只需使用命令“easy_install paramiko”。
当您使用许多不同的软件包时,这最终会为您省去很多麻烦。
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.