python douban源
时间: 2023-06-20 21:03:15 浏览: 100
群发源代码大放送了之-douban
可以使用下面的命令将 pip 默认的源更换为豆瓣源:
```
pip config set global.index-url https://pypi.doubanio.com/simple/
```
如果想要恢复默认的官方源,可以使用以下命令:
```
pip config unset global.index-url
```
注意:该命令会将全局的 pip 源进行更改,如果只想对当前项目进行更改,可以在命令后添加 `-e` 参数,如下所示:
```
pip config set global.index-url https://pypi.doubanio.com/simple/ -e
```
阅读全文