python的pip怎样更新包 + pip的help翻译
2021-02-11 01:18
标签:bar inux toolbar free init name too lib uninstall 1、pip下载安装 pip下载 进入https://pypi.python.org/pypi/pip,下载 .tar.gz压缩包 Linux安装pip 升级pip 2、pip使用详解 pip安装包 pip查看是否已安装 pip检查哪些包需要更新 pip升级包 # pip install --upgrade 要升级的包名 pip卸载包 3、pip使用实例 安装redis 卸载redis pip参数解释 中文(可复制摘取): # pip --help 英文(图片):
python的pip怎样更新包 + pip的help翻译 标签:bar inux toolbar free init name too lib uninstall 原文地址:https://www.cnblogs.com/meiguicong/p/12740007.html# tar -xzvf pip-1.5.4.tar.gz 解压
# cd pip-1.5.4 进入解压文件
# python setup.py install 安装
python -m pip install --upgrade pip
# pip install 安装包名
[...]
Successfully installed SomePackage #安装成功
# pip show --files 安装包名
Name:SomePackage # 包名
Version:1.0 # 版本号
Location:/my/env/lib/pythonx.x/site-packages # 安装位置
Files: # 包含文件等等
../somepackage/__init__.py
[...]
# pip list --outdated
包名 目前安装的版本号 最新版本号
# pip uninstall 要卸载的包名
# pip install redis
# pip uninstall redis
Uninstalling redis:
/usr/lib/python3.6/site-packages/redis-2.9.1-py3.6.egg-info
.........
Proceed (y/n)? y
Successfully uninstalled redis # 卸载成功
Usage:
pip
文章标题:python的pip怎样更新包 + pip的help翻译
文章链接:http://soscw.com/index.php/essay/53826.html