Python pip 常用命令汇总


Posted in Python onOctober 19, 2020

使用了这么就pip命令,但是一直是简单使用,很多命令都是用了查,查了用,今天把常用的命令汇总一下,方便使用。

命令:

pip

Python pip 常用命令汇总

由上图可以看到 pip 支持一下命令

Commands:
 install           Install packages.
 download          Download packages.
 uninstall          Uninstall packages.
 freeze           Output installed packages in requirements format.
 list            List installed packages.
 show            Show information about installed packages.
 check            Verify installed packages have compatible dependencies.
 search           Search PyPI for packages.
 wheel            Build wheels from your requirements.
 hash            Compute hashes of package archives.
 completion         A helper command used for command completion.
 help            Show help for commands.
General Options:
 -h, --help         Show help.
 --isolated         Run pip in an isolated mode, ignoring
               environment variables and user configuration.
 -v, --verbose        Give more output. Option is additive, and can be
               used up to 3 times.
 -V, --version        Show version and exit.
 -q, --quiet         Give less output. Option is additive, and can be
               used up to 3 times (corresponding to WARNING,
               ERROR, and CRITICAL logging levels).
 --log <path>        Path to a verbose appending log.
 --proxy <proxy>       Specify a proxy in the form
               [user:passwd@]proxy.server:port.
 --retries <retries>     Maximum number of retries each connection should
               attempt (default 5 times).
 --timeout <sec>       Set the socket timeout (default 15 seconds).
 --exists-action <action>  Default action when a path already exists:
               (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
 --trusted-host <hostname>  Mark this host as trusted, even though it does
               not have valid or any HTTPS.
 --cert <path>        Path to alternate CA bundle.
 --client-cert <path>    Path to SSL client certificate, a single file
               containing the private key and the certificate
               in PEM format.
 --cache-dir <dir>      Store the cache data in <dir>.
 --no-cache-dir       Disable the cache.
 --disable-pip-version-check
               Don't periodically check PyPI to determine
               whether a new version of pip is available for
               download. Implied with --no-index.

1、install

pip install
You must give at least one requirement to install (see "pip help install")

Python pip 常用命令汇总

所以这里可以直接使用一下命令实现在线安装

pip install <包名> 或 pip install -r requirements.txt
通过使用== >= <= > <来指定版本,不写则安装最新版

requirements.txt内容格式为:

APScheduler==2.1.2
Django==1.5.4
MySQL-Connector-Python==2.0.1
MySQL-python==1.2.3
PIL==1.1.7
South==1.0.2
django-grappelli==2.6.3
django-pagination==1.0.7

安装本地安装包

pip install <目录>/<文件名> 或 pip install --use-wheel --no-index --find-links=wheelhouse/ <包名>

2、uninstall

卸载安装包

pip uninstall <包名> 或 pip uninstall -r requirements.txt

升级包

pip install -U <包名>

或:pip install <包名> --upgrade

升级pip

pip install -U pip

使用pip安装插件的时候报错:

You are using pip version 8.1.1, however version 9.0.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

升级命令: python -m pip install --upgrade pip

3、freeze

pip freeze,查看已经安装的包及版本信息。

Python pip 常用命令汇总

导出到指定文件中,如图,注意 “ > ”,文件名称随意。常见按第二种写法。

Python pip 常用命令汇总

4、list

Python pip 常用命令汇总

查询可升级的包

pip list -o

Python pip 常用命令汇总

5、show

显示包所在目录及信息

Python pip 常用命令汇总

6、search

搜索包

pip search <搜索关键字>

以上就是Python pip 常用命令汇总的详细内容,更多关于Python pip 常用命令的资料请关注三水点靠木其它相关文章!

Python 相关文章推荐
python处理文本文件实现生成指定格式文件的方法
Jul 31 Python
总结Python编程中三条常用的技巧
May 11 Python
python根据txt文本批量创建文件夹
Dec 08 Python
pandas 数据索引与选取的实现方法
Jun 21 Python
Django 开发调试工具 Django-debug-toolbar使用详解
Jul 23 Python
python 实现list或string按指定分段
Dec 25 Python
Tensorflow 自定义loss的情况下初始化部分变量方式
Jan 06 Python
python shell命令行中import多层目录下的模块操作
Mar 09 Python
pycharm 2020.2.4 pip install Flask 报错 Error:Non-zero exit code的问题
Dec 04 Python
Pandas DataFrame求差集的示例代码
Dec 13 Python
如何用Python提取10000份log中的产品信息
Jan 14 Python
Python学习之时间包使用教程详解
Mar 21 Python
Python环境使用OpenCV检测人脸实现教程
Oct 19 #Python
python Tornado框架的使用示例
Oct 19 #Python
python mock测试的示例
Oct 19 #Python
python 提高开发效率的5个小技巧
Oct 19 #Python
python 利用toapi库自动生成api
Oct 19 #Python
协程Python 中实现多任务耗资源最小的方式
Oct 19 #Python
python爬取音频下载的示例代码
Oct 19 #Python
You might like
当年上海收录机产品生产,进口和价格情况
2021/03/04 无线电
解析php中die(),exit(),return的区别
2013/06/20 PHP
PHP IE中下载附件问题解决方法
2014/01/07 PHP
[原创]php使用curl判断网页404(不存在)的方法
2016/06/23 PHP
php实现的生成排列算法示例
2019/07/25 PHP
JavaScript基本概念初级讲解论坛贴的学习记录
2009/02/22 Javascript
解决Extjs上传图片无法预览的解决方法
2012/03/22 Javascript
通过js动态操作table(新增,删除相关列信息)
2012/05/23 Javascript
node.js中的fs.linkSync方法使用说明
2014/12/15 Javascript
了不起的node.js读书笔记之node.js中的特性
2014/12/22 Javascript
Javascript中神奇的this
2016/01/20 Javascript
jQuery中on绑定事件后引发的事件冒泡问题如何解决
2016/05/25 Javascript
如何解决hover在ie6中的兼容性问题
2016/12/15 Javascript
jQuery实现表单动态添加与删除数据操作示例
2018/07/03 jQuery
Vue快速实现通用表单验证的示例代码
2020/01/09 Javascript
vue实现图片懒加载的方法分析
2020/02/05 Javascript
解决Vue-Router升级导致的Uncaught (in promise)问题
2020/08/07 Javascript
python列表与元组详解实例
2013/11/01 Python
Java分治归并排序算法实例详解
2017/12/12 Python
Python版名片管理系统
2018/11/30 Python
Pycharm设置utf-8自动显示方法
2019/01/17 Python
Django实现文件上传下载
2019/10/06 Python
jupyter notebook运行命令显示[*](解决办法)
2020/05/18 Python
用python写一个带有gui界面的密码生成器
2020/11/06 Python
基于CSS3实现立方体自转效果
2016/03/01 HTML / CSS
澳大利亚时尚前卫设计师珠宝在线:Amber Sceats
2017/10/04 全球购物
Dr.Jart+美国官网:韩国药妆品牌
2019/01/18 全球购物
加拿大在线旅游公司:Flighthub
2019/03/11 全球购物
Stutterheim瑞典:瑞典高级外套时装品牌
2019/06/24 全球购物
毕业生文员求职信
2013/11/03 职场文书
骨干教师培训制度
2014/01/13 职场文书
优秀毕业生事迹材料
2014/02/12 职场文书
大龄毕业生求职别忘职业规划
2014/03/11 职场文书
技校毕业生自荐信
2014/06/03 职场文书
个人道歉信大全
2019/04/11 职场文书
Python 图片添加美颜效果
2022/04/28 Python