No compatible version of pytorch.vision (torchvision) package for latest PyTorch for Jetson AGX Xaviera

Hi @robert.koziarski, please try building/installing torchvision from source - you can find the directions in this topic:

$ sudo apt-get install libjpeg-dev zlib1g-dev libpython3-dev libavcodec-dev libavformat-dev libswscale-dev
$ git clone --branch <version> https://github.com/pytorch/vision torchvision   # see below for version of torchvision to download
$ cd torchvision
$ export BUILD_VERSION=0.x.0  # where 0.x.0 is the torchvision version  
$ python3 setup.py install --user
$ cd ../  # attempting to load torchvision from build dir will result in import error
$ pip install 'pillow<7' # always needed for Python 2.7, not needed torchvision v0.5.0+ with Python 3.6

If you continue to have issues, you could also try using the l4t-pytorch container images which come with PyTorch and torchvision pre-installed.