当前位置:首页 > python > 正文内容

pip 升级到指定版本,但是py2的pip版本务必在20版本以内包含20版本

root3年前 (2021-04-15)python2205

python3 -m pip install --user --upgrade pip==9.0.3(换成你想要的版本编号)

如果python2的只能升级到20+版本。超过会出现不支持的情况

扫描二维码推送至手机访问。

版权声明:本文由一叶知秋发布,如需转载请注明出处。

本文链接:https://zhiqiu.top/?id=97

分享给朋友:

相关文章

python 调用linux命令 subprocess.popen

import subprocesscommd = "echo 123"p1 = subprocess.Popen(commd, shell=True, stdout=subprocess.PIPE, stder...

chromedriver下载地址

https://npm.taobao.org/mirrors/chromedriver/...

Python控制函数运行时间

在线程中主动判断时间的运行长度 import requests, datetime, time import threading class MyThread(thre...

Python-获取图片的大小

安装Pillowpip install pillow本地图片import os from PIL import Image path = os.path.join(os.g...

centos7 python2安装psutil

[root@internet geo_server]# pip install psutilDEPRECATION: Python 2.7 reached th...

linux 的信号和快捷键&python的信号

linux信号 1) SIGHUP           2) SIGINT     &nb...