yy hh
yy hh

Reputation: 9

Can't install TensorFlow 2.7.0 on an A10 GPU

I am currently using the Nvidia A10 GPU on Alibaba Cloud.

The environment is

I want to install TensorFlow 2.7.0 and it works well in other GPUs, but why not?

Command line:

pip3 install tensorflow==2.7.0

The error appears as:

Collecting tensorflow==2.7.0
  Could not find a version that satisfies the requirement tensorflow==2.7.0 (from versions: 1.13.1, 1.13.2, 1.14.0)
No matching distribution found for tensorflow==2.7.0

Upvotes: 0

Views: 347

Answers (1)

yy hh
yy hh

Reputation: 9

I solved it like this:

sudo -H pip3 install --upgrade --ignore-installed pip setuptools

Upvotes: 0

Related Questions