PIP依赖管理

									PIP依赖管理

PIP是Python中的标准库管理器,它允许你安装和管理不属于Python标准库的其它软件包
Python3的3.4版本以及Python2的2.7.9版本开始,PIP被直接包括在Python的安装包内
PIP托管了大量非常流行的库[www.pypi.org]
Pip命令:
1, pip help 帮助文档
2, pip install 安装包[pip install 包名版本号(例子:pip insall selenium3.14.0)]
3, pip install 包名 –i 镜像地址 –-trusted –host 镜像地址对应的host
1),国内的pip源
阿里云:https://mirrors.aliyun.com/pypi/simple/
清华:https://pypi.tuna.tsinghua.edu.cn/simple
豆瓣:https://pypi.douban.com/simple/
4, pip install-U 包名 升级包
5, pip uninstall 卸载包
6, pip list 列出所有包文件
7, pip download 下载包
8, pip search requests搜索包

上一篇:❤️❤️马上安排!闺女对我说,想在游戏里做【无敌超人】,用Python游戏开发模块Pygame马上安排❤️❤️源码


下一篇:windows 安装pip 及更换pip国内源