retgb 发表于 2015-8-24 11:25:10

python环境安装paramiko模块

下载软件安装包并安装,官方网站https://pypi.python.org/pypi/paramiko/


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# wget https://pypi.python.org/packages/source/p/paramiko/paramiko-1.14.0.tar.gz#md5=e26324fd398af68ad506fe98853835c3
# tar xf paramiko-1.14.0.tar.gz
# cd paramiko-1.14.0
# python setup.py install

#测试结果
# ipython
Python 2.7.5 (default, Aug 21 2015, 21:19:17)
Type "copyright", "credits" or "license" for more information.

IPython 2.3.1 -- An enhanced Interactive Python.
?         -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help      -> Python's own help system.
object?   -> Details about 'object', use 'object??' for extra details.

In : import paramiko





页: [1]
查看完整版本: python环境安装paramiko模块