赞
踩
在线安装:
Pip3 install redis -i https://pypi.douban.com/simple/
离线安装:
1、将第三方包cryptography下载到当前目录下
清华镜像:pip3 download -i https://pypi.tuna.tsinghua.edu.cn/simple -d ./ cryptography
豆瓣镜像:pip3 download -i https://pypi.douban.com/simple/ -d ./ cursor
-i:通过镜像下载
-d:下载目录
2、把下载包传到 离线服务器,执行以下命令:
pip3 install --no-index --find-links=./ cryptography
注意:whl文件适配当前系统
补充:第三方包.tar.gz ,如cursor-1.3.4.tar.gz,如何安装:
python setup.py build
python setup.py install
或者
把下载包传到 离线服务器,执行以下命令:
pip3 install --no-index --find-links=./ cursor
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。