博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
系统中同时存在python2和python3时 pip有时候更新后会报错 解决安装的方法如下
阅读量:6413 次
发布时间:2019-06-23

本文共 2485 字,大约阅读时间需要 8 分钟。

https://pip.pypa.io/en/stable/installing/

Installation

Do I need to install pip?

pip is already installed if you are using Python 2 >=2.7.9 or Python 3 >=3.4 downloaded from  or if you are working in a  created by  or . Just make sure to .

Installing with get-pip.py

To install pip, securely download . :

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

Inspect get-pip.py for any malevolence. Then run the following:

 到这一步的时候,如果python2的pip坏了,就运行:python2 get-pip.py

 如果是python3的pip坏了,升级就运行:python3 get-pip.py

python get-pip.py

Warning

 

Be cautious if you are using a Python install that is managed by your operating system or another package manager. get-pip.py does not coordinate with those tools, and may leave your system in an inconsistent state.

get-pip.py also installs   and  if they are not already.  is required to install . Both are required in order to build a  (which improves installation speed), although neither are required to install pre-built .

Note

 

The get-pip.py script is supported on the same python version as pip. For the now unsupported Python 2.6, alternate script is available .

get-pip.py options

--no-setuptools

If set, do not attempt to install 

--no-wheel

If set, do not attempt to install 

get-pip.py allows  and the . Below are some examples:

Install from local copies of pip and setuptools:

python get-pip.py --no-index --find-links=/local/copies

Install to the user site :

python get-pip.py --user

Install behind a proxy:

python get-pip.py --proxy="http://[user:passwd@]proxy.server:port"

Using Linux Package Managers

See  in the .

Upgrading pip

On Linux or macOS:

pip install -U pip

On Windows :

python -m pip install -U pip

Python and OS Compatibility

pip works with CPython versions 2.7, 3.3, 3.4, 3.5, 3.6 and also pypy.

This means pip works on the latest patch version of each of these minor versions. Previous patch versions are supported on a best effort approach.

pip works on Unix/Linux, macOS, and Windows.


"Secure" in this context means using a modern browser or a tool like curl that verifies SSL certificates when downloading from https URLs.
Beginning with pip v1.5.1, get-pip.py stopped requiring setuptools to be installed first.
The pip developers are considering making --user the default for all installs, including get-pip.py installs of pip, but at this time, --user installs for pip itself, should not be considered to be fully tested or endorsed. For discussion, see .

转载于:https://www.cnblogs.com/my-blogs-for-everone/p/8922085.html

你可能感兴趣的文章
版本号带两个小数点的,如何比较大小?( NSStringCompareOptions )
查看>>
QCustomplot使用分享(三) 图
查看>>
什么是java?
查看>>
WPF路径动画(动态逆向动画)
查看>>
Low Level Reader Protocol (LLRP) 简介
查看>>
[Micropython]TPYBoard v10x NRF24L01无线通讯模块使用教程
查看>>
mysql中show processlist过滤和杀死线程
查看>>
最新Sublime Text 2 激活 汉化
查看>>
基础数据类型之字典
查看>>
第七次作业
查看>>
Oracle中NVARCHAR2与VARCHAR2的区别
查看>>
php debug
查看>>
Ubuntu构建LVS+Keepalived高可用负载均衡集群【生产环境部署】
查看>>
lvm实现快速备份文件及数据库,lvm快照原理
查看>>
设计模式之Factory Method(工厂方法)
查看>>
10K入职linux运维岗位小伙伴感谢信及面试经历分享
查看>>
zookeeper入门之Curator的使用之几种监听器的使用
查看>>
[转]Reporting Service部署之访问权限
查看>>
innerxml and outerxml
查看>>
validform校验框架不显示错误提示
查看>>