当我在终端中执行命令时
pip install --upgrade tensorflow
我遇到错误
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
stackoverflow中有一个类似的问题。导致此错误的原因是tensorflow仅支持Python 3.7。所以我检查了我的版本
python3 --version3
--> 3.8.1
我试图用
降级 conda install python=3.7
---> Collecting package metadata (current_repodata.json): done
Solving environment: done
# All requested packages already installed.
,但不起作用。怎么会这样?
我正在使用manjaro作为发行版。
答案 0 :(得分:0)
您正在运行的Python3.7是否为32位版本? Tensorflow需要python的64位版本。