当前位置:网站首页>降低pip到指定版本(通过cmp升级pip,在降低到原来版本)
降低pip到指定版本(通过cmp升级pip,在降低到原来版本)
2022-06-24 19:29:00 【静文·红·精灵】
升级到最新本版脚本:python -m pip install --upgrade pip
指定版本升降的脚本:python -m pip install pip==21.2.4(22.1.2)
查看本版的脚本:pip show pipC:\Users\euweb>python -m pip install pip==21.2.4
Defaulting to user installation because normal site-packages is not writeable
Collecting pip==21.2.4
Downloading pip-21.2.4-py3-none-any.whl (1.6 MB)
---------------------------------------- 1.6/1.6 MB 4.1 MB/s eta 0:00:00
Installing collected packages: pip
Attempting uninstall: pip
Found existing installation: pip 22.1.2
Uninstalling pip-22.1.2:
Successfully uninstalled pip-22.1.2
WARNING: The scripts pip.exe, pip3.10.exe and pip3.exe are installed in 'C:\Users\euweb\AppData\Roaming\Python\Python310\Scripts' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed pip-21.2.4
C:\Users\euweb>pip show pip
Name: pip
Version: 21.2.4
Summary: The PyPA recommended tool for installing Python packages.
Home-page: https://pip.pypa.io/
Author: The pip developers
Author-email: [email protected]
License: MIT
Location: c:\users\euweb\appdata\roaming\python\python310\site-packages
Requires:
Required-by:
边栏推荐
猜你喜欢
随机推荐
Object.defineProperty和Reflect.defineProperty的容错问题
leetcode:1504. 统计全 1 子矩形的个数
Jianmu continuous integration platform v2.5.0 release
虚拟机CentOS7中无图形界面安装Oracle(保姆级安装)
XTransfer技术新人进阶秘诀:不可错过的宝藏Mentor
【论】Deep learning in the COVID-19 epidemic: A deep model for urban traffic revitalization index
Guava中这些Map的骚操作,让我的代码量减少了50%
字节的软件测试盆友们你们可以跳槽了,这还是你们心心念念的字节吗?
堆排序和快速排序原理实现
Tdengine can read and write through dataX
[camera Foundation (II)] camera driving principle and Development & v4l2 subsystem driving architecture
TDengine可通过数据同步工具 DataX读写
[精选] 多账号统一登录,你如何设计?
A deep learning model for urban traffic flow prediction with traffic events mined from twitter
【无标题】
Intelligent fish tank control system based on STM32 under Internet of things
leetcode_1365
C语言-关键字1
suspense组件和异步组件
About transform InverseTransformPoint, transform. InverseTransofrmDirection









