Verifying JetPack 6 Porting Result
sudo apt-get update
sudo apt-get install -y nvidia-jetpack
# To assure that the CUDA is installed properly
nvcc --version
sudo apt-get install -y python3-pip libopenblas-dev
# Pytorch for Jetson
python3 -m pip install torch-2.2.0a0+6a975be.nv23.11-cp310-cp310-linux_aarch64.whl
# Check if Pytorch installed properly
pip list | grep torch
# Enter Python
python
import torch
## Check Pytorch could access CUDA properly
torch.cuda.is_available()
## Return True = Good
## Return False = No Good
Last updated