在github上下载一些神经网络时,常看到requirement.txt文件,作者也提供了安装命令pip install -r requirements.txt, 然而这样直接安装速度较慢,因此通过添加国内的镜像源可以加快所需库的安装速度,命令如下:
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
当单独安装某个库的时候,比如numpy,可以使用如下命令:
pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
有时通过清华镜像源安装会出现问题,可以尝试通过更改为其它国内的镜像源来解决,如下是国内的其它镜像源:文章来源:https://www.toymoban.com/news/detail-520445.html
#清华大学
https://pypi.tuna.tsinghua.edu.cn/simple/
#中国科技大学
https://pypi.mirrors.ustc.edu.cn/simple/
#豆瓣(douban)
http://pypi.douban.com/simple/
#中国科学技术大学
http://pypi.mirrors.ustc.edu.cn/simple/
#阿里云
http://mirrors.aliyun.com/pypi/simple/
更改示例:文章来源地址https://www.toymoban.com/news/detail-520445.html
#更改为阿里云镜像
pip install numpy -i http://mirrors.aliyun.com/pypi/simple/
到了这里,关于用清华源等国内镜像加速Python常用库的安装的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!