\"pip3 install tensorflow\"错误的解决方法

环境:win10,python3.7

错误:
在cmd输入pip3 install tensorflow提示以下错误:
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow

原因:
python3.7没有合适的tensorflow版本。
\pip3 install tensorflow\错误的解决方法
图源tensorflow官网:https://www.tensorflow.org/in...

解决方法:
安装python3.6版本:https://www.python.org/downlo...
安装完成后,在cmd输入pip3.6 install tensorflow

完成!

相关推荐