Latest Jetson PyTorch install URL gives 404

Following the steps here: Installing PyTorch for Jetson Platform - NVIDIA Docs

This step in particular does not work:

export TORCH_INSTALL=https://developer.download.nvidia.cn/compute/redist/jp/v51/pytorch/torch-2.0.0a0+fe05266f.nv23.04-cp38-cp38-linux_aarch64.whl
  • the URL gives a 404
  • the TLD is also .cn and should likely be .com when viewing nvidia.com docs

Still get a 404 when changing to .com, it seems there are only the following releases uploaded to https://developer.download.nvidia.com/compute/redist/jp/v51/pytorch/ :

 torch-1.14.0a0+44dac51c.nv23.01-cp38-cp38-linux_aarch64.whl
torch-1.14.0a0+44dac51c.nv23.02-cp38-cp38-linux_aarch64.whl
torch-2.0.0a0+8aa34602.nv23.03-cp38-cp38-linux_aarch64.whl

So, the latest version 2.0.0a0+fe05266f does not exist. Also referenced in the compatibility matrix:

I was able to install pytorch using the latest version hosted:

export TORCH_INSTALL=https://developer.download.nvidia.com/compute/redist/jp/v51/pytorch/torch-2.0.0a0+8aa34602.nv23.03-cp38-cp38-linux_aarch64.whl
pip install --no-cache $TORCH_INSTALL

@s2p6cq579h thanks for pointing this out, sorry about that! We’ll get the documentation fixed to reflect the latest wheels.

1 Like

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