为 Poetry
配置国内pypi镜像,加速python依赖包的下载
打开配置文件
添加配置
1
2
3
4
|
[[tool.poetry.source]]
name = "aliyun"
url = "https://mirrors.aliyun.com/pypi/simple"
default = true
|
其他镜像源
1
2
3
|
豆瓣 https://pypi.doubanio.com/simple/
网易 https://mirrors.163.com/pypi/simple/
清华 https://pypi.tuna.tsinghua.edu.cn/simple/
|