I had some success a while ago on my Jetson Nano. Since then, my SD card decided to stop working and thus I must start from scratch again.
I come today with a Torchvision issue. I have Torch 1.6 install for my python 3.6.9, however I need Torchvision as well. Here is what my input and output is:
jb@jb-desktop:~$ pip3 install torchvision==0.7.0
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement torchvision==0.7.0 (from versions: 0.1.6, 0.1.7, 0.1.8, 0.1.9, 0.2.0, 0.2.1, 0.2.2, 0.2.2.post2, 0.2.2.post3, 0.9.1, 0.10.0, 0.11.1, 0.11.2, 0.11.3)
ERROR: No matching distribution found for torchvision==0.7.0
Many other suggestions online have the same error. Any suggestions?
One lasth thing before I walk off, earlier I did install a Torchvision 0.7.0 source. When I try install with the setup.py I get this:
jb@jb-desktop:~/torchvision$ python3 setup.py install
Building wheel torchvision-0.7.0a0+78ed10c
Traceback (most recent call last):
File “setup.py”, line 61, in
write_version_file()
File “setup.py”, line 53, in write_version_file
with open(version_path, ‘w’) as f:
PermissionError: [Errno 13] Permission denied: ‘/home/jb/torchvision/torchvision/version.py’
Not sure what method I should use to get this install :)