欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

mac中python2.7安装paramiko

程序员文章站 2022-06-17 10:41:45
...

步骤1

https://www.dlitz.net/software/pycrypto/下载pycrypto-2.6.1.tar.gz,然后解压缩,将文件拷贝到python的site-packages下面,
在pycrypto-2.6.1目录下执行python setup.py install

[email protected] AutoBuild % cd /Library/Python/2.7/site-packages/pycrypto-2.6.1
[email protected] pycrypto-2.6.1 % python setup.py install

步骤2

https://pypi.org/project/paramiko/1.17.1/#files
下载paramiko-1.17.1.tar.gz ,然后解压缩,将文件拷贝到python的site-packages下面,在paramiko-1.17.1目录下执行python setup.py install

[email protected] pycrypto-2.6.1 % cd /Library/Python/2.7/site-packages/paramiko-1.17.1
[email protected] paramiko-1.17.1 % python setup.py install

完结撒花

[email protected] paramiko-1.17.1 % python                 

WARNING: Python 2.7 is not recommended. 
This version is included in macOS for compatibility with legacy software. 
Future versions of macOS will not include Python 2.7. 
Instead, it is recommended that you transition to using 'python3' from within Terminal.

Python 2.7.16 (default, Feb 28 2021, 12:34:25) 
[GCC Apple LLVM 12.0.5 (clang-1205.0.19.59.6) [+internal-os, ptrauth-isa=deploy on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import paramiko
相关标签: python2.7