一、简介
pip是一个安装和管理 Python 包的工具。python安装包的工具有easy_install, setuptools, pip,distribute等,pip是Python官方推荐的包管理工具。pip安装python中的模块,由于python需要安装相当多的模块,可以使用pip。pip依赖于pip仓库,默认为:http://pypi.python.org/
参考文章:https://blog.csdn.net/weixin_34107955/article/details/87466239
https://blog.csdn.net/lcanlup/article/details/84635625
1、 安装
#yum -y install python-pip python-wheel
pip升级: pip install --upgrade pip
2、pip参数解释
#pip --help
Usage: pip [options]
Commands:
install 安装包.
uninstall 卸载包.
freeze 按着一定格式输出已安装包列表
list 列出已安装包.
show 显示包详细信息.
search 搜索包,类似yum里的search.
wheel Build wheels from your requirements.
zip 不推荐. Zip individual packages.
unzip 不推荐. Unzip individual packages.
bundle 不推荐. Create pybundles.
help 当前帮助.
General Options:
-h, --help 显示帮助.
-v, --verbose 更多的输出,最多可以使用3次
-V, --version 现实版本信息然后退出.
-q, --quiet 最少的输出.
–log-file
–log
–proxy Specify a proxy in the form [user:passwd@]proxy.server:port.
–timeout 连接超时时间 (默认15秒).
–exists-action Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup.
–cert
案例:
]# pip install psutil