笔记关键词检索?

在所有笔记中搜索你感兴趣的关键词!

《Python基础教程》 ──   (第2版 修订版)

作者:Magnus Lie Hetland 著,司维,曾军崴,谭颖华 译


pip源切换

使用 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

永久使用(Linux环境)

在用户的根目录下创建 .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)

发布评论

你的邮箱地址不会被公开。请输入所有带 * 的信息。