Python中使用pip下载安装tensorflow

安装了python后,使用pip命令下载安装第三方库的地址默认是python官网,下载速度慢,且容易超时。

为提高下载速度,可以使用国内的一些镜像网站,例如安装tensorflow

最原始从官网下载:   pip install tensorflow

从国内镜像网站安装最新版本:  pip install tensorflow -i  http://pypi.douban.com/simple/

或者指定版本号:  pip install tensorflow==1.14.0 -i  http://pypi.douban.com/simple/

下面是几个常用的国内镜像网站

阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣 http://pypi.douban.com/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/

 


 

 

你可能感兴趣的:(tensorflow,python,tensorflow)