python 离线安装 pysftp

1.先找一台能联网的机器执行:

pip download -d ./dependency -r requirements.txt

2.在待安装机器执行:

pip install --no-index --ignore-installed  --find-links=./   -r   requirements.txt

ps:requirements 文件内容

paramiko==2.6.0
bcrypt==3.1.7
cryptography==2.8
PyNaCl==1.3.0
cffi==1.13.2
six==1.13.0
pycparser==2.19

pysftp==0.2.9

----------------------

其他问题:pip版本不一致的问题,待安装机器的pip版本太低会有问题:

Could not find a version that satisfies the requirement............

离线升级:

下载pip安装包

下载:
https://files.pythonhosted.org/packages/aa/1a/62fb0b95b1572c76dbc3cc31124a8b6866cbe9139eb7659ac7349457cf7c/pip-19.2.2.tar.gz
解压安装:
tar -zxvf pip-19.2.2.tar.gz
cd pip-19.2.2/
python setup.py install

------

pip 导出所有依赖

pip freeze > requirement.txt


 

你可能感兴趣的:(linux,python,运维)