《Python基础教程》 ── (第2版 修订版)
作者:Magnus Lie Hetland 著,司维,曾军崴,谭颖华 译
在所有笔记中搜索你感兴趣的关键词!
作者:Magnus Lie Hetland 著,司维,曾军崴,谭颖华 译
使用 pip 安装软件时,使用国内镜像可以大大提高下载速度
https://pypi.tuna.tsinghua.edu.cn/simple/ # 清华大学
https://mirrors.aliyun.com/pypi/simple/ # 阿里云
https://pypi.douban.com/simple/ # 豆瓣
https://pypi.mirrors.ustc.edu.cn/simple/ # 中国科学技术大学
https://pypi.hustunique.com/ # 华中科技大学
示例:通过清华镜像安装 pip
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ pip
在用户的根目录下创建 .pip
文件夹,新建 pip.conf
文件,在文件中写入要使用的镜像
示例:使用清华镜像
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
永久使用(Windows环境)
打开 C:\Users\你的用户名 目录下,新建pip文件夹,进到文件夹中创建pip.ini文件,在文件中写入要使用的镜像
示例:使用清华镜像
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
评论 (0)