百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 技术文章 > 正文

银河麒麟系统离线安装pip和paramiko

itomcoil 2025-04-01 19:01 13 浏览

###### 参考网址:
https://blog.csdn.net/chrnhao/article/details/138717281 将python库下载到本地安装—Pypi官网wheel版本选择详解—小白详解版

###### 什么是whl文件:

whl 文件是一个Python软件包的分发格式,全称是Wheel文件。

Wheel是一个为Python设计的二进制包格式,它允许快速地安装Python库和应用程序。

Wheel文件本质上是ZIP格式的压缩文件,包含了用于安装软件包的所有文件。

使用Wheel文件安装软件包由于不需要编辑通常比使用源代码安装(如 .tar.gz 文件)要快。

##### 软件包的提供wheel文件的方式有两种:

一种是提供通用版本,通用版本一般只需要满足python的大版本条件,例如只要是python3就行不挑操作系统和系统架构。

一种是提供各个细分版本,细分版本会针对python版本,操作系统,系统使用的架构(例如Linux-X86和AMR64)的不同提供不同的wheel文件。

通用示例:
flask-3.0.3-py3-none-any.whl

细分示例:
numpy-1.26.4-cp310-cp310-win_amd64.whl

##### 1.Python 2.7.18通过源代码方式安装pip

## 1.1 从https://pypi.org/网站下载需要的安装包

[root@python-pip site-packages]# cd /Package/python_package/python_pip-2.7/

[root@python-pip python_pip-2.7]# ls -lrt

总用量 8008

-rw-r--r-- 1 root root 144064 7月 25 09:34
netmiko-3.1.0-py2.py3-none-any.whl

-rw-r--r-- 1 root root 213084 7月 25 09:34
paramiko-2.12.0-py2.py3-none-any.whl

-rw-r--r-- 1 root root 1522101 7月 25 09:34
pip-20.3.4-py2.py3-none-any.whl

-rw-r--r-- 1 root root 1530646 7月 25 10:10 pip-20.3.4.tar.gz

drwxr-xr-x 6 501 games 216 7月 25 10:13 pip-20.3.4

-rw-r--r-- 1 root root 59201 7月 25 10:35
bcrypt-3.1.7-cp27-cp27mu-manylinux1_x86_64.whl

-rw-r--r-- 1 root root 390480 7月 25 10:40
cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl

-rw-r--r-- 1 root root 118697 7月 25 10:42
pycparser-2.21-py2.py3-none-any.whl

-rw-r--r-- 1 root root 539785 7月 25 10:51
PyNaCl-1.1.2-cp27-cp27mu-manylinux1_x86_64.whl

-rw-r--r-- 1 root root 2662439 7月 25 10:58
cryptography-3.3.2-cp27-cp27mu-manylinux1_x86_64.whl

-rw-r--r-- 1 root root 11223 7月 25 10:58
enum34-1.1.10-py2-none-any.whl

-rw-r--r-- 1 root root 18159 7月 25 10:59
ipaddress-1.0.23-py2.py3-none-any.whl

-rw-r--r-- 1 root root 964882 7月 25 10:59
PyNaCl-1.4.0-cp27-cp27mu-manylinux1_x86_64.whl

## 1.1 解压pip安装包tar.gz

[root@python-pip python_package]# tar xf pip-20.3.4.tar.gz

[root@python-pip python_package]# cd pip-20.3.4/

[root@python-pip pip-20.3.4]# ls

AUTHORS.txt docs LICENSE.txt MANIFEST.in NEWS.rst PKG-INFO pyproject.toml README.rst setup.cfg setup.py src

[root@python-pip pip-20.3.4]# /usr/bin/python setup.py install

前端部分省略...........

creating build/bdist.linux-x86_64/egg/EGG-INFO

copying src/pip.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO

copying src/pip.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO

copying src/pip.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO

copying src/pip.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO

copying src/pip.egg-info/not-zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO

copying src/pip.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO

creating dist

creating 'dist/pip-20.3.4-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it

removing 'build/bdist.linux-x86_64/egg' (and everything under it)

Processing pip-20.3.4-py2.7.egg

creating /usr/lib/python2.7/site-packages/pip-20.3.4-py2.7.egg

Extracting pip-20.3.4-py2.7.egg to /usr/lib/python2.7/site-packages

Adding pip 20.3.4 to easy-install.pth file

Installing pip script to /usr/bin

Installing pip2.7 script to /usr/bin

Installing pip2 script to /usr/bin

Installed /usr/lib/python2.7/site-packages/pip-20.3.4-py2.7.egg

Processing dependencies for pip==20.3.4

Finished processing dependencies for pip==20.3.4

## 1.3 查看pip安装位置

[root@python-pip pip-20.3.4]# whereis pip

pip: /usr/bin/pip /usr/bin/pip2.7

## 按序安装paramiko的依赖包(pycparser、cffi、bcrypt、PyNaCl、ipaddress、enum34、cryptography),最后安装paramiko

[root@python-pip python_package]# /usr/bin/pip install pycparser-2.21-py2.py3-none-any.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./pycparser-2.21-py2.py3-none-any.whl

Installing collected packages: pycparser

Successfully installed pycparser-2.21

[root@python-pip python_package]# /usr/bin/pip install cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl

Requirement already satisfied: pycparser in /usr/lib/python2.7/site-packages (from cffi==1.15.1) (2.21)

Installing collected packages: cffi

Successfully installed cffi-1.15.1

[root@python-pip python_package]# /usr/bin/pip install bcrypt-3.1.7-cp27-cp27mu-manylinux1_x86_64.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./bcrypt-3.1.7-cp27-cp27mu-manylinux1_x86_64.whl

Requirement already satisfied: six>=1.4.1 in /usr/lib/python2.7/site-packages (from bcrypt==3.1.7) (1.15.0)

Requirement already satisfied: cffi>=1.1 in /usr/lib64/python2.7/site-packages (from bcrypt==3.1.7) (1.15.1)

Requirement already satisfied: pycparser in /usr/lib/python2.7/site-packages (from cffi>=1.1->bcrypt==3.1.7) (2.21)

Installing collected packages: bcrypt

Successfully installed bcrypt-3.1.7

[root@python-pip python_package]# /usr/bin/pip install PyNaCl-1.4.0-cp27-cp27mu-manylinux1_x86_64.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./PyNaCl-1.4.0-cp27-cp27mu-manylinux1_x86_64.whl

Requirement already satisfied: cffi>=1.4.1 in /usr/lib64/python2.7/site-packages (from PyNaCl==1.4.0) (1.15.1)

Requirement already satisfied: six in /usr/lib/python2.7/site-packages (from PyNaCl==1.4.0) (1.15.0)

Requirement already satisfied: pycparser in /usr/lib/python2.7/site-packages (from cffi>=1.4.1->PyNaCl==1.4.0) (2.21)

Installing collected packages: PyNaCl

Attempting uninstall: PyNaCl

Found existing installation: PyNaCl 1.1.2

Uninstalling PyNaCl-1.1.2:

Successfully uninstalled PyNaCl-1.1.2

Successfully installed PyNaCl-1.4.0

[root@python-pip python_package]# /usr/bin/pip install ipaddress-1.0.23-py2.py3-none-any.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./ipaddress-1.0.23-py2.py3-none-any.whl

Installing collected packages: ipaddress

Successfully installed ipaddress-1.0.23

[root@python-pip python_package]# /usr/bin/pip install enum34-1.1.10-py2-none-any.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./enum34-1.1.10-py2-none-any.whl

Installing collected packages: enum34

Successfully installed enum34-1.1.10

[root@python-pip python_package]# /usr/bin/pip install cryptography-3.3.2-cp27-cp27mu-manylinux1_x86_64.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./cryptography-3.3.2-cp27-cp27mu-manylinux1_x86_64.whl

Requirement already satisfied: ipaddress; python_version < "3" in /usr/lib/python2.7/site-packages (from cryptography==3.3.2) (1.0.23)

Requirement already satisfied: six>=1.4.1 in /usr/lib/python2.7/site-packages (from cryptography==3.3.2) (1.15.0)

Requirement already satisfied: enum34; python_version < "3" in /usr/lib/python2.7/site-packages (from cryptography==3.3.2) (1.1.10)

Requirement already satisfied: cffi>=1.12 in /usr/lib64/python2.7/site-packages (from cryptography==3.3.2) (1.15.1)

Requirement already satisfied: pycparser in /usr/lib/python2.7/site-packages (from cffi>=1.12->cryptography==3.3.2) (2.21)

Installing collected packages: cryptography

Successfully installed cryptography-3.3.2

[root@python-pip python_package]# /usr/bin/pip install paramiko-2.12.0-py2.py3-none-any.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./paramiko-2.12.0-py2.py3-none-any.whl

Requirement already satisfied: bcrypt>=3.1.3 in /usr/lib64/python2.7/site-packages (from paramiko==2.12.0) (3.1.7)

Requirement already satisfied: six in /usr/lib/python2.7/site-packages (from paramiko==2.12.0) (1.15.0)

Requirement already satisfied: pynacl>=1.0.1 in /usr/lib64/python2.7/site-packages (from paramiko==2.12.0) (1.4.0)

Requirement already satisfied: cryptography>=2.5 in /usr/lib64/python2.7/site-packages (from paramiko==2.12.0) (3.3.2)

Requirement already satisfied: cffi>=1.1 in /usr/lib64/python2.7/site-packages (from bcrypt>=3.1.3->paramiko==2.12.0) (1.15.1)

Requirement already satisfied: ipaddress; python_version < 3 in usrlibpython2.7site-packages from cryptography>=2.5->paramiko==2.12.0) (1.0.23)

Requirement already satisfied: enum34; python_version < 3 in usrlibpython2.7site-packages from cryptography>=2.5->paramiko==2.12.0) (1.1.10)

Requirement already satisfied: pycparser in /usr/lib/python2.7/site-packages (from cffi>=1.1->bcrypt>=3.1.3->paramiko==2.12.0) (2.21)

Installing collected packages: paramiko

Successfully installed paramiko-2.12.0

## 2. Python 3.7.9通过源代码方式安装pip

## 2.1 从https://pypi.org/网站下载需要的安装包

[root@python-pip site-packages]# cd /Package/python_package/python_pip-3.7/

[root@python-pip python_pip-2.7]# ls -lrt

总用量 13300

-rw-r--r-- 1 root root 232236 7月 25 09:34
netmiko-4.4.0-py3-none-any.whl

-rw-r--r-- 1 root root 225900 7月 25 09:34
paramiko-3.4.0-py3-none-any.whl

-rw-r--r-- 1 root root 1824406 7月 25 09:34
pip-24.1.2-py3-none-any.whl

-rw-r--r-- 1 root root 2132709 7月 25 10:10 pip-24.0.tar.gz

-rw-r--r-- 1 root root 11224 7月 25 10:58
enum34-1.1.10-py3-none-any.whl

-rw-r--r-- 1 root root 1530646 7月 25 14:43 pip-20.3.4.tar.gz

drwxr-xr-x 6 501 games 216 7月 25 14:44 pip-20.3.4

-rw-r--r-- 1 root root 2110226 7月 25 14:57 pip-24.0-py3-none-any.whl

-rw-r--r-- 1 root root 62337 7月 25 15:06
bcrypt-3.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

-rw-r--r-- 1 root root 61026 7月 25 15:06
bcrypt-3.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

-rw-r--r-- 1 root root 427911 7月 25 15:14
cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

-rw-r--r-- 1 root root 118697 7月 25 15:20
pycparser-2.21-py2.py3-none-any.whl

-rw-r--r-- 1 root root 856678 7月 25 15:29
PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

-rw-r--r-- 1 root root 3998060 7月 25 15:47
cryptography-43.0.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

## 2.2 解压pip安装包tar.gz

[root@python-pip python_package]# tar xf pip-20.3.4.tar.gz

[root@python-pip python_package]# cd pip-20.3.4/

[root@python-pip pip-20.3.4]# ls

AUTHORS.txt docs LICENSE.txt MANIFEST.in NEWS.rst PKG-INFO pyproject.toml README.rst setup.cfg setup.py src

[root@python-pip pip-20.3.4]# /usr/bin/python3 setup.py install

省略一部分.....

creating build/bdist.linux-x86_64/egg/EGG-INFO

copying src/pip.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO

copying src/pip.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO

copying src/pip.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO

copying src/pip.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO

copying src/pip.egg-info/not-zip-safe -> build/bdist.linux-x86_64/egg/EGG-INFO

copying src/pip.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO

creating dist

creating 'dist/pip-20.3.4-py3.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it

removing 'build/bdist.linux-x86_64/egg' (and everything under it)

Processing pip-20.3.4-py3.7.egg

creating /usr/local/lib/python3.7/site-packages/pip-20.3.4-py3.7.egg

Extracting pip-20.3.4-py3.7.egg to /usr/local/lib/python3.7/site-packages

Adding pip 20.3.4 to easy-install.pth file

Installing pip script to /usr/local/bin

Installing pip3 script to /usr/local/bin

Installing pip3.7 script to /usr/local/bin

Installed /usr/local/lib/python3.7/site-packages/pip-20.3.4-py3.7.egg

Processing dependencies for pip==20.3.4

Finished processing dependencies for pip==20.3.4

## 2.3 通过虚拟机环境升级pip到24.0(因Python 3.7.9最高支持到pip 24.0)

[root@python-pip python_pip-3.7]# cd /usr/local/lib/python3.7/site-packages/pip-24.0.dist-info

[root@python-pip pip-24.0.dist-info]# ls

AUTHORS.txt direct_url.json entry_points.txt INSTALLER LICENSE.txt METADATA RECORD REQUESTED top_level.txt WHEEL

[root@python-pip pip-24.0.dist-info]# /usr/bin/python3 -m venv scjgj-env

[root@python-pip pip-24.0.dist-info]# source scjgj-env/bin/activate

(scjgj-env) [root@python-pip pip-24.0.dist-info]# pip

pip pip2 pip2.7 pip3 pip3.10 pip3.7 pipewire pipewire-cli pipewire-monitor

(scjgj-env) [root@python-pip pip-24.0.dist-info]# pip3 install /Package/python_package/python_pip-3.7/pip-24.0-py3-none-any.whl

Processing /Package/python_package/python_pip-3.7/pip-24.0-py3-none-any.whl

Installing collected packages: pip

Attempting uninstall: pip

Found existing installation: pip 20.2.2

Uninstalling pip-20.2.2:

Successfully uninstalled pip-20.2.2

Successfully installed pip-24.0

## 2.4 通过虚拟环境来升级paramiko(备注:按顺序安装依赖包pycparser、cffi、bcrypt、PyNaCl、cryptography、paramiko,关于包的版本可以根据安装报错信息下载,或者查看官网文档指示。)

[root@python-pip python_pip-3.7]# cd /usr/local/lib/python3.7/site-packages/pip-24.0.dist-info

[root@python-pip pip-24.0.dist-info]# source scjgj-env/bin/activate

(scjgj-env) [root@python-pip pip-24.0.dist-info]# pip

pip pip2 pip2.7 pip3 pip3.10 pip3.7 pipewire pipewire-cli pipewire-monitor

(scjgj-env) [root@python-pip pip-24.0.dist-info]# pip3 install /Package/python_package/python_pip-3.7/pycparser-2.21-py2.py3-none-any.whl

Processing /Package/python_package/python_pip-3.7/pycparser-2.21-py2.py3-none-any.whl

Installing collected packages: pycparser

Successfully installed pycparser-2.21

(scjgj-env) [root@python-pip pip-24.0.dist-info]# pip3 install /Package/python_package/python_pip-3.7/cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Processing /Package/python_package/python_pip-3.7/cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Requirement already satisfied: pycparser in ./scjgj-env/lib/python3.7/site-packages (from cffi==1.15.1) (2.21)

Installing collected packages: cffi

Successfully installed cffi-1.15.1

(scjgj-env) [root@python-pip pip-24.0.dist-info]# pip3 install /Package/python_package/python_pip-3.7/bcrypt-3.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

Processing /Package/python_package/python_pip-3.7/bcrypt-3.2.2-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

Requirement already satisfied: cffi>=1.1 in ./scjgj-env/lib/python3.7/site-packages (from bcrypt==3.2.2) (1.15.1)

Requirement already satisfied: pycparser in ./scjgj-env/lib/python3.7/site-packages (from cffi>=1.1->bcrypt==3.2.2) (2.21)

Installing collected packages: bcrypt

Successfully installed bcrypt-3.2.2

(scjgj-env) [root@python-pip pip-24.0.dist-info]# pip3 install /Package/python_package/python_pip-3.7/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

Processing /Package/python_package/python_pip-3.7/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl

Requirement already satisfied: cffi>=1.4.1 in ./scjgj-env/lib/python3.7/site-packages (from PyNaCl==1.5.0) (1.15.1)

Requirement already satisfied: pycparser in ./scjgj-env/lib/python3.7/site-packages (from cffi>=1.4.1->PyNaCl==1.5.0) (2.21)

Installing collected packages: PyNaCl

Successfully installed PyNaCl-1.5.0

(scjgj-env) [root@python-pip pip-24.0.dist-info]# pip3 install /Package/python_package/python_pip-3.7/cryptography-43.0.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Processing /Package/python_package/python_pip-3.7/cryptography-43.0.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Requirement already satisfied: cffi>=1.12; platform_python_implementation != "PyPy" in ./scjgj-env/lib/python3.7/site-packages (from cryptography==43.0.0) (1.15.1)

Requirement already satisfied: pycparser in ./scjgj-env/lib/python3.7/site-packages (from cffi>=1.12; platform_python_implementation != "PyPy"->cryptography==43.0.0) (2.21)

Installing collected packages: cryptography

Successfully installed cryptography-43.0.0

(scjgj-env) [root@python-pip pip-24.0.dist-info]# pip3 install /Package/python_package/python_pip-3.7/paramiko-3.4.0-py3-none-any.whl

Processing /Package/python_package/python_pip-3.7/paramiko-3.4.0-py3-none-any.whl

Requirement already satisfied: cryptography>=3.3 in ./scjgj-env/lib/python3.7/site-packages (from paramiko==3.4.0) (43.0.0)

Requirement already satisfied: bcrypt>=3.2 in ./scjgj-env/lib/python3.7/site-packages (from paramiko==3.4.0) (3.2.2)

Requirement already satisfied: pynacl>=1.5 in ./scjgj-env/lib/python3.7/site-packages (from paramiko==3.4.0) (1.5.0)

Requirement already satisfied: cffi>=1.12; platform_python_implementation != "PyPy" in ./scjgj-env/lib/python3.7/site-packages (from cryptography>=3.3->paramiko==3.4.0) (1.15.1)

Requirement already satisfied: pycparser in ./scjgj-env/lib/python3.7/site-packages (from cffi>=1.12; platform_python_implementation != "PyPy"->cryptography>=3.3->paramiko==3.4.0) (2.21)

Installing collected packages: paramiko

Successfully installed paramiko-3.4.0

查看升级版本

(scjgj-env) [root@python-pip pip-24.0.dist-info]# pip3 list|grep paramiko

paramiko 3.4.0

# package安装完成后,退出虚拟环境

(scjgj-env) [root@test pip-24.0.dist-info]# deactivate

[root@test pip-24.0.dist-info]#

测试paramiko安装是否成功

[root@scjgj-n-zab python_pip-3.7]# /usr/bin/python3

Python 3.7.9 (default, Mar 2 2021, 02:43:11)

[GCC 7.3.0] on linux

Type "help", "copyright", "credits" or "license" for more information.

>>> import paramiko

#### 3.安装过程中遇到的错误信息

## 3.1 安装paramiko错误信息

[root@python-pip python_package]# /usr/bin/pip install paramiko-2.12.0-py2.py3-none-any.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./paramiko-2.12.0-py2.py3-none-any.whl

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/bcrypt/

WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/bcrypt/

WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/bcrypt/

WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/bcrypt/

WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/bcrypt/

ERROR: Could not find a version that satisfies the requirement bcrypt>=3.1.3 (from paramiko==2.12.0) (from versions: none)

ERROR: No matching distribution found for bcrypt>=3.1.3 (from paramiko==2.12.0)

[root@python-pip python_package]# /usr/bin/pip install bcrypt-3.1.7-cp27-cp27mu-manylinux1_x86_64.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./bcrypt-3.1.7-cp27-cp27mu-manylinux1_x86_64.whl

Requirement already satisfied: six>=1.4.1 in /usr/lib/python2.7/site-packages (from bcrypt==3.1.7) (1.15.0)

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/cffi/

WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/cffi/

WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/cffi/

WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/cffi/

WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/cffi/

ERROR: Could not find a version that satisfies the requirement cffi>=1.1 (from bcrypt==3.1.7) (from versions: none)

ERROR: No matching distribution found for cffi>=1.1 (from bcrypt==3.1.7)

[root@python-pip python_package]# /usr/bin/pip install cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/pycparser/

WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/pycparser/

WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/pycparser/

WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/pycparser/

WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/pycparser/

ERROR: Could not find a version that satisfies the requirement pycparser (from cffi==1.15.1) (from versions: none)

ERROR: No matching distribution found for pycparser (from cffi==1.15.1)

[root@python-pip python_package]# /usr/bin/pip install paramiko-2.12.0-py2.py3-none-any.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./paramiko-2.12.0-py2.py3-none-any.whl

Requirement already satisfied: bcrypt>=3.1.3 in /usr/lib64/python2.7/site-packages (from paramiko==2.12.0) (3.1.7)

Requirement already satisfied: six in /usr/lib/python2.7/site-packages (from paramiko==2.12.0) (1.15.0)

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/pynacl/

WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/pynacl/

WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/pynacl/

WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/pynacl/

WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/pynacl/

ERROR: Could not find a version that satisfies the requirement pynacl>=1.0.1 (from paramiko==2.12.0) (from versions: none)

ERROR: No matching distribution found for pynacl>=1.0.1 (from paramiko==2.12.0)

[root@python-pip python_package]# /usr/bin/pip install cryptography-3.3.2-cp27-cp27mu-manylinux1_x86_64.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./cryptography-3.3.2-cp27-cp27mu-manylinux1_x86_64.whl

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/ipaddress/

WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/ipaddress/

WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/ipaddress/

WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/ipaddress/

WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/ipaddress/

ERROR: Could not find a version that satisfies the requirement ipaddress; python_version < "3" (from cryptography==3.3.2) (from versions: none)

ERROR: No matching distribution found for ipaddress; python_version < "3" (from cryptography==3.3.2)

[root@python-pip python_package]# /usr/bin/pip install cryptography-3.3.2-cp27-cp27mu-manylinux1_x86_64.whl

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.

Processing ./cryptography-3.3.2-cp27-cp27mu-manylinux1_x86_64.whl

Requirement already satisfied: ipaddress; python_version < "3" in /usr/lib/python2.7/site-packages (from cryptography==3.3.2) (1.0.23)

Requirement already satisfied: six>=1.4.1 in /usr/lib/python2.7/site-packages (from cryptography==3.3.2) (1.15.0)

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/enum34/

WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/enum34/

WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/enum34/

WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/enum34/

WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -2] \xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\x90\x8d\xe7\xa7\xb0\xe6\x88\x96\xe6\x9c\x8d\xe5\x8a\xa1',)': /simple/enum34/

ERROR: Could not find a version that satisfies the requirement enum34; python_version < "3" (from cryptography==3.3.2) (from versions: none)

ERROR: No matching distribution found for enum34; python_version < "3" (from cryptography==3.3.2)

## 3.2 导入paramiko错误信息

[root@python-pip python_package]# /usr/bin/python

Python 2.7.18 (default, Mar 14 2021, 14:54:03)

[GCC 7.3.0] on linux2

Type "help", "copyright", "credits" or "license" for more information.

>>> import paramiko

/usr/lib/python2.7/site-packages/paramiko/transport.py:33: CryptographyDeprecationWarning: Python 2 is no longer supported by the Python core team. Support for it is now deprecated in cryptography, and will be removed in the next release.

from cryptography.hazmat.backends import default_backend

>>> from cryptography.hazmat.backends import default_backend

>>> import paramiko

## 3.3 python3安装源代码pip报错信息

root@python-pip pip-24.0]# /usr/bin/python3 setup.py install

running install

running bdist_egg

running egg_info

creating UNKNOWN.egg-info

writing UNKNOWN.egg-info/PKG-INFO

writing dependency_links to UNKNOWN.egg-info/dependency_links.txt

writing entry points to UNKNOWN.egg-info/entry_points.txt

writing top-level names to UNKNOWN.egg-info/top_level.txt

writing manifest file 'UNKNOWN.egg-info/SOURCES.txt'

reading manifest file 'UNKNOWN.egg-info/SOURCES.txt'

reading manifest template 'MANIFEST.in'

warning: no files found matching 'src/pip/_vendor/pyparsing/diagram/template.jinja2'

warning: no files found matching 'docs/docutils.conf'

warning: no previously-included files found matching '.git-blame-ignore-revs'

warning: no previously-included files found matching '.coveragerc'

warning: no previously-included files found matching '.mailmap'

warning: no previously-included files found matching '.appveyor.yml'

warning: no previously-included files found matching '.readthedocs.yml'

warning: no previously-included files found matching '.pre-commit-config.yaml'

warning: no previously-included files found matching '.readthedocs-custom-redirects.yml'

warning: no previously-included files found matching 'tox.ini'

warning: no previously-included files found matching 'noxfile.py'

warning: no files found matching '*.css' under directory 'docs'

warning: no previously-included files found matching 'src/pip/_vendor/six'

warning: no previously-included files found matching 'src/pip/_vendor/six/moves'

warning: no previously-included files matching '*.pyi' found under directory 'src/pip/_vendor'

no previously-included directories found matching '.github'

no previously-included directories found matching 'docs/build'

no previously-included directories found matching 'news'

no previously-included directories found matching 'tasks'

no previously-included directories found matching 'tests'

no previously-included directories found matching 'tools'

writing manifest file 'UNKNOWN.egg-info/SOURCES.txt'

installing library code to build/bdist.linux-x86_64/egg

running install_lib

warning: install_lib: 'build/lib' does not exist -- no Python modules to install

creating build

creating build/bdist.linux-x86_64

creating build/bdist.linux-x86_64/egg

creating build/bdist.linux-x86_64/egg/EGG-INFO

copying UNKNOWN.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO

copying UNKNOWN.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO

copying UNKNOWN.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO

copying UNKNOWN.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO

copying UNKNOWN.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO

zip_safe flag not set; analyzing archive contents...

creating dist

creating 'dist/UNKNOWN-0.0.0-py3.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it

removing 'build/bdist.linux-x86_64/egg' (and everything under it)

Processing UNKNOWN-0.0.0-py3.7.egg

Removing /usr/local/lib/python3.7/site-packages/UNKNOWN-0.0.0-py3.7.egg

Copying UNKNOWN-0.0.0-py3.7.egg to /usr/local/lib/python3.7/site-packages

UNKNOWN 0.0.0 is already the active version in easy-install.pth

Installing pip script to /usr/local/bin

Installing pip3 script to /usr/local/bin

Installing pip3.7 script to /usr/local/bin

Installed /usr/local/lib/python3.7/site-packages/UNKNOWN-0.0.0-py3.7.egg

Processing dependencies for UNKNOWN==0.0.0

Finished processing dependencies for UNKNOWN==0.0.0

解决

[root@python-pip pip-24.0]# /usr/bin/python3 setup.py build

running build

[root@python-pip pip-24.0]# /usr/bin/python3 setup.py clean

running clean

## 3.4 python3.7升级paramiko3.4.0报错信息

[root@python-pip python_pip-3.7]# /usr/local/bin/pip3 install paramiko-3.4.0-py3-none-any.whl

Processing ./paramiko-3.4.0-py3-none-any.whl

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<
pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f6f28b99f90>: Failed to establish a new connection: [Errno -2] 未知的名称或服务')': /simple/bcrypt/

WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<
pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f6f28ba34d0>: Failed to establish a new connection: [Errno -2] 未知的名称或服务')': /simple/bcrypt/

WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<
pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f6f28b98890>: Failed to establish a new connection: [Errno -2] 未知的名称或服务')': /simple/bcrypt/

WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<
pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f6f28b8d390>: Failed to establish a new connection: [Errno -2] 未知的名称或服务')': /simple/bcrypt/

WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<
pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f6f28ba3990>: Failed to establish a new connection: [Errno -2] 未知的名称或服务')': /simple/bcrypt/

INFO: pip is looking at multiple versions of paramiko to determine which version is compatible with other requirements. This could take a while.

ERROR: Could not find a version that satisfies the requirement bcrypt>=3.2 (from paramiko) (from versions: none)

ERROR: No matching distribution found for bcrypt>=3.2

相关推荐

PS小技巧 调整命令,让人物肤色变得更加白皙 #后期修图

我们来看一下如何去将人物的皮肤变得更加的白皙。·首先选中图层,Ctrl键加J键复制一层。·打开这里的属性面板,选择快速操作删除背景,这样就会将人物进行单独的抠取。·接下来在上方去添加一个黑白调整图层,...

把人物肤色提亮的方法和技巧

PS后期调白肤色提亮照片的方法。一白遮百丑,所以对于Photoshop后期来说把人物肤色调白是一项非常重要的任务。就拿这张素材图片来说,这张素材图片人脸的肤色主要偏红、偏黄,也不够白皙,该怎样对它进行...

《Photoshop教程》把美女图片调成清爽色彩及润肤技巧

关注PS精品教程,每天不断更新~~室内人物图片一般会偏暗,人物脸部、肤色及背景会出现一些杂点。处理之前需要认真的给人物磨皮及美白,然后再整体润色。最终效果原图一、用修补工具及图章工具简单去除大一点的黑...

PS后期对皮肤进行美白的技巧

PS后期进行皮肤美白的技巧。PS后期对皮肤进行美白的技巧:·打开素材图片之后直接复制原图。·接下来直接点击上方的图像,选择应用图像命令。·在通道这里直接选择红通道,混合这里直接选择柔光,然后点击确定。...

493 [PS调色]调模特通透肤色

效果对比:效果图吧:1、光位图:2、拍摄参数:·快门:160;光圈:8;ISO:1003、步骤分解图:用曲线调整图层调出基本色调。用可选颜色调整图层调整红色、黄色、白色和灰色4种颜色的混合比例。用色彩...

先选肤色再涂面部,卡戴珊的摄影师透露:为明星拍完照后怎么修图

据英国媒体12月17日报道,真人秀明星金·卡戴珊终于承认,她把女儿小北P进了家族的圣诞贺卡,怪不得粉丝们都表示这张贺卡照得非常失败。上周,这位39岁的女星遭到了一些粉丝针对这张照片的批评,她于当地时间...

如何在PS中运用曲线复制另一张照片的色调

怎样把另一张作品的外观感觉,套用到自己的照片上?单靠肉眼来猜,可能很不容易,而来自BenSecret的教学,关键是在PS使用了两个工具,让你可以准确比较两张照片的曝光、色调与饱和度,方便你调整及复制...

PS在LAB模式下调出水嫩肤色的美女

本PS教程主要使用Photoshop使用LAB模式调出水嫩肤色的美女,教程调色比较独特。作者比较注重图片高光部分的颜色,增加质感及肤色调红润等都是在高光区域完成。尤其在Lab模式下,用高光选区调色后图...

在Photoshop图像后期处理中如何将人物皮肤处理得白皙通透

我们在人像后期处理中,需要将人物皮肤处理的白皙通透,处理方法很多,大多数都喜欢使用曲线、磨皮等进行调整,可以达到亮但是不透,最终效果往往不是很好,今天就教大家一种如何将任务皮肤处理得白皙通透,希望能帮...

PS调色自学教程:宝宝照片快速调通透,简单实用!

PS调色自学教程:宝宝照片快速调通透。·首先复制图层,然后选择进入ACR滤镜,选择曲线锁定照片的亮部,也就高光位置,其他部位补亮一点,尤其是阴影的部位补亮多一些,让画面的层次均匀一点。·然后回到基本项...

【干货】如何利用PS进行人物美化

人物图像美化在Photoshop中非常常用,Photoshop作为一款功能强大的图像处理软件,不仅可以对人像进行基本的调色、美化和修复等处理,还可以改变人物的线条和幅度,如调整脸部器官和脸型的大小、调...

教大家一种可以快速把肤色处理均匀的方法@抖音短视频

快速把肤色处理均匀的方法。今天教大家一种可以快速把肤色处理均匀的方法。像这张照片整体肤色走紫红色,但是局部偏黄缘处理起来非常的麻烦。其实我们只需要新建空白图层,图层混合模式更改为颜色,再选择画笔工具把...

PS调色教程 利用RAW调出干净通透的肤色

要么不发,要么干货。后期教程来噜~用RAW调出干净通透的肤色。这次终于不会原片比PS后好看了吧。如果你依然这么觉得,请不要残忍的告诉我这个事实,泪谢TAT)附送拍摄花絮,感谢各位的支持更多风格请关注m...

photoshop后期皮肤变白的技巧

PS后期皮肤变白的技巧。1.PS后期让皮肤变白的方法有很多种,接下来教你一种非常简单容易上手的方法。2.打开素材图片之后,直接在小太极下拉框的位置添加一个纯色调整图层,颜色设置一个纯白色,点击...

Photoshop调出人物的淡雅粉嫩肤色教程

本教程主要使用Photoshop调出人物的淡雅粉嫩肤色教程,最终的效果非常的通透迷人,下面让我们一起来学习.出自:86ps效果图:原图:1、打开原图复制一层。2、用Topaz滤镜磨皮(点此下载)。3、...