Problem to install Tensorflow into Jetson Nano

I have a Jetson Nano Developer Kit of 4 Gb.
When I try to install Tensorflow on it by diz command “pip install --extra-index-url https:///developer.download.nvidia.com/compute/redist/jp/v461 tensorflow==2.7.0+nv22.1”
PS: No /// just //

I get this error:
“ERROR: Could not find a version that satisfies the requirement tensorflow==2.7.0+nv22.1 (from versions: none)
ERROR: No matching distribution found for tensorflow==2.7.0+nv22.1”

Hi,

We don’t have the python 2 package anymore.
Would you mind using pip3 instead?

We can install TensorFlow successfully with the following command:

sudo pip3 install --pre --extra-index-url https://developer.download.nvidia.com/compute/redist/jp/v461 tensorflow

Thanks.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.