我试图在我的linux机器上安装tensorflow,但我不断收到此错误:
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
我正在运行的命令是:
$ pip install tensorflow
我也尝试过
$ python3 -m pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-2.1.0-cp36-cp36m-manylinux2010_x86_64.whl
来自Tensorflow网站,它给了我错误:
ERROR: tensorflow_gpu-2.1.0-cp36-cp36m-manylinux2010_x86_64.whl is not a supported wheel on this platform.
我一直在搜索这个问题好几个小时了。 我什至尝试安装Anaconda,但是当我这样做时,某些东西对我却很突出。我收到此警告:
(my virtual environment)$ bash ~/Downloads/Anaconda3-2019.10-Linux-x86_64.sh
WARNING:
Your operating system appears not to be 64-bit, but you are trying to
install a 64-bit version of Anaconda3.
Are sure you want to continue the installation? [yes|no]
这对我来说很奇怪,因为我以为我正在运行64位体系结构,因为我有:
(my virtual environment)$ uname -a
Linux (MACHINE) 4.9.140-tegra #1 SMP PREEMPT Mon Dec 9 22:52:02 PST 2019 aarch64 aarch64 aarch64 GNU/Linux
那不是64位吗?
我的点子版本也是:pip 20.0.2 from /usr/local/lib/python3.6/dist-packages/pip (python 3.6)
我尝试过的每个解决方案都没有用。有什么我想念的吗?