i use SDKManage flash thor , but i find there not install torch , how to install torch ?
Tue Sep 9 15:36:03 2025
±----------------------------------------------------------------------------------------+
| NVIDIA-SMI 580.00 Driver Version: 580.00 CUDA Version: 13.0 |
±----------------------------------------±-----------------------±---------------------+
| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|=========================================+========================+======================|
| 0 NVIDIA Thor On | 00000000:01:00.0 Off | N/A |
| N/A N/A N/A N/A / N/A | Not Supported | 0% Default |
| | | Disabled |
±----------------------------------------±-----------------------±---------------------+
±----------------------------------------------------------------------------------------+
| Processes: |
| GPU GI CI PID Type Process name GPU Memory |
| ID ID Usage |
|=========================================================================================|
| 0 N/A N/A 2343 G /usr/lib/xorg/Xorg 0MiB |
| 0 N/A N/A 2424 G /usr/bin/gnome-shell 0MiB |
±---------------------------
I’ve downloaded torch-2.9.0 from pypi.jetson-ai-lab.io and when I used it, I got an import error:ImportError: libnvpl_lapack_lp64_gomp.so.0: cannot open shared object file: No such file or directory,I flash my thor and install cuda,etc with SDKmanager.How cana I solve it?
import torchvision
Traceback (most recent call last):
File “”, line 1, in
File “/home/tankailin/torch2.9_new/lib/python3.12/site-packages/torchvision/init.py”, line 10, in
from torchvision import _meta_registrations, datasets, io, models, ops, transforms, utils # usort:skip
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “/home/tankailin/torch2.9_new/lib/python3.12/site-packages/torchvision/_meta_registrations.py”, line 163, in @torch.library.register_fake(“torchvision::nms”)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “/home/tankailin/torch2.9_new/lib/python3.12/site-packages/torch/library.py”, line 1063, in register
use_lib._register_fake(
File “/home/tankailin/torch2.9_new/lib/python3.12/site-packages/torch/library.py”, line 211, in _register_fake
handle = entry.fake_impl.register(
^^^^^^^^^^^^^^^^^^^^^^^^^
File “/home/tankailin/torch2.9_new/lib/python3.12/site-packages/torch/_library/fake_impl.py”, line 50, in register
if torch._C._dispatch_has_kernel_for_dispatch_key(self.qualname, “Meta”):
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: operator torchvision::nms does not exist
I wonder if libcudart is actually missing (which I can’t imagine) or if Python just can’t see it smh..
I did make sure to use the option —system-site-packages in venv
Anyway, thanks @975593335 for the quick response. Everything works now. Btw I use venv, I didn’t have to make the adjustments to libstdc++ that you mentioned, just installing the .whl was enough.