Anaconda使用conda和pip下载东西出现ERROR: Could not find a version that satisfies the requirement tensorflow

一开始弄的时候,使用conda install tensorflow 、pip install tensorflow一直出现

ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow

使用pip install --upgrade tensorflow
Anaconda使用conda和pip下载东西出现ERROR: Could not find a version that satisfies the requirement tensorflow_第1张图片

使用pip install -U tensorflowAnaconda使用conda和pip下载东西出现ERROR: Could not find a version that satisfies the requirement tensorflow_第2张图片
使用pip install tensorflowAnaconda使用conda和pip下载东西出现ERROR: Could not find a version that satisfies the requirement tensorflow_第3张图片
解决办法
使用python -m pip install tensorflow -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com(这里我是下载tensorflow(包名),下载其他的包的话改包名即可,也可以改成其他的)

你可能感兴趣的:(Python)