1.使用阿里云镜像
pip install tensorflow_gpu==1.14.0 -i https://mirrors.aliyun.com/pypi/simple --ignore-installed
2.使用清华源
pip install tensorflow_gpu==1.14.0 -i https://pypi.tuna.tsinghua.edu.cn/simple --ignore-installed
3.使用豆瓣源
pip install tensorflow_gpu==1.14.0 -i https://pypi.douban.com/simple --ignore-installed
4.说明
- tensorflow_gpu是GPU版本,若是需要使用CPU版,直接替换为tensorflow;
- 具体的版本需要自行选择,1开头的版本和2开头的版本在很多api上有所变化;
- “-i” 表示的就是使用源的地址下载
- “–ignore-installed” 表示忽略之前已下载的版本