Could not find a version that satisfies the requirement tensorflow

Hi, expert

I have successfully installed TensorFlow for Jetson Nano.

hgnan@jetson-nano:~$ sudo apt-get install python3-pip libhdf5-serial-dev hdf5-tools
.....
hgnan@jetson-nano:~$ pip3 install --extra-index-url https://developer.download.nvidia.com/compute/redist/jp/v42 tensorflow-gpu==1.13.1+nv19.4 --user
.....

Verifying The Installation:

hgnan@jetson-nano:~/shell$ python3
Python 3.6.7 (default, Oct 22 2018, 11:32:17)
[GCC 8.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow
>>>

But I have issue , When I install ISR (https://github.com/idealo/image-super-resolutio) from PyPI

hgnan@jetson-nano:~$ pip3 install ISR
Collecting ISR
  Downloading https://files.pythonhosted.org/packages/46/b3/8ff67a4f7987beab0d24d9293021d6c7d2682d74430fe0444d28232635ad/ISR-2.0.2-py3-none-any.whl
Collecting imageio (from ISR)
  Downloading https://files.pythonhosted.org/packages/af/0a/943c965d372dae0b1f1482677d29030ab834351a61a9a632fd62f27f1523/imageio-2.5.0-py3-none-any.whl (3.3MB)
    100% |████████████████████████████████| 3.3MB 14kB/s
Collecting tensorflow==1.13.1 (from ISR)
[b]  Could not find a version that satisfies the requirement tensorflow==1.13.1 (from ISR) (from versions: )
No matching distribution found for tensorflow==1.13.1 (from ISR)[/b]

How should I solve the problem?
Thank you.

Hi,

The error is caused by version incompatible.
The version you installed is 1.13.1+nv19.4 but the required is 1.13.1.
So the pip installer will want to install v1.13.1 but found it is not available.

Since you already have TensorFlow installed, you can just skip the dependency:

pip install ISR --no-deps

Thanks.