1.Python包管理
- pip常用命令
- pip install XXX
- pip install djangle==2.1 # 指定版本下载
- pip uninstall XXX
- pip freeze
- pip list
- 虚拟环境迁移
- 导出虚拟环境
- pip freeze > requirements.txt
- 导入虚拟环境
- pip install -r requirements.txt
- pip下载的东西在python的lib\site-packages文件夹下,下载时可用ctrl+c取消
2.python自带pip
3.pip 文件来源
- 源:官方(默认,国外);国内源
- pip 国内镜像源:
(1)阿里云 http://mirrors.aliyun.com/pypi/simple/
(2)豆瓣http://pypi.douban.com/simple/
(3)清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
(4)中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
(5)华中科技大学http://pypi.hustunique.com/
- 指定临时镜像源
pip install jieba -i http://pypi.douban.com/simple/
- 设置永久镜像源
在user目录中创建pip目录,如:C:\Users\xx\pip,新建文件pip.ini,文件内容如下:
[global]
timeout = 60
index-url = http://pypi.douban.com/simple
trusted-host = pypi.douban.com
4.三方库的使用流程
- 拥有:pip install XXX
- 初始化
- 使用