I have been following the pyimagesearch tutorial for configuring a Jetson Nano for Computer Vision and I’m running into a problem.
The tutorial is found here: How to configure your NVIDIA Jetson Nano for Computer Vision and Deep Learning - PyImageSearch
So far I’ve been able to follow all the steps without any major issues but when I attempt to install Tensorflow 1.13 which is the recommended version I get an error. “Could not find a version that satisfies the requirement…” you can see a screenshot of the terminal.
I’ve triple checked to make sure my command is correct and even checked the Nvidia documentation here for installing Tensorflow: Installing TensorFlow for Jetson Platform :: NVIDIA Deep Learning Frameworks Documentation
But still no luck getting it to work. If anyone has any ideas I would greatly appreciate it
to install a specific version that is not included with pip you can compile it directly from the source, here is the link: https://www.tensorflow.org/install/source
Hi,
Would you mind pasting the error log here?
The screenshot is blurry and we cannot tell what the error messages are.
More, please noted that we have lots of newer JetPack versions for Nano.
It’s recommended to upgrade your system into JetPack4.6 and install the TensorFlow package from here.
You can do this via below command:
$ sudo pip3 install --pre --extra-index-url https://developer.download.nvidia.com/compute/redist/jp/**v46** ‘tensorflow<2’
Thanks.
Oh yes very sorry, the screenshot looked clear when I uploaded it.
WARNING: Retrying((Retry(total=4
, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘NewConnectionError(’<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f9422e400>; Failed to establish a new connection: [Errno -2] Name or service not known’,)‘: /compute/redist/jp/v42/tensorflow-gpu/
WARNING: Retrying((Retry(total=3
, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘NewConnectionError(’<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f9422e6a0>; Failed to establish a new connection: [Errno -2] Name or service not known’,)‘: /compute/redist/jp/v42/tensorflow-gpu/
WARNING: Retrying((Retry(total=2
, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘NewConnectionError(’<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f9422e828>; Failed to establish a new connection: [Errno -2] Name or service not known’,)‘: /compute/redist/jp/v42/tensorflow-gpu/
WARNING: Retrying((Retry(total=1
, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘NewConnectionError(’<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f9422e9b0>; Failed to establish a new connection: [Errno -2] Name or service not known’,)‘: /compute/redist/jp/v42/tensorflow-gpu/
WARNING: Retrying((Retry(total=0
, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘NewConnectionError(’<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f9422eb38>; Failed to establish a new connection: [Errno -2] Name or service not known’,)': /compute/redist/jp/v42/tensorflow-gpu/
ERROR: Could not find a version that satisfies the requirement tensorflow-gpu==1.13.1+nv19.3 (from versions: none)
ERROR: No matching distribution found for tensorflow-gpu==1.13.1+nv19.3
I will upgrade to Jetpack 4.6 in the meantime and see if that helps, thank you