I have try all methods, but my question is not reslove, and my question is
>>> import torch
>>> print(f'CUDA Available: {torch.cuda.is_available()}
File "<stdin>", line 1
print(f'CUDA Available: {torch.cuda.is_available()}
^
SyntaxError: EOL while scanning string literal
>>> print(f"CUDA Device Name: {torch.cuda.get_device_name(0)}")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/root/anaconda3/envs/test/lib/python3.8/site-packages/torch/cuda/__init__.py", line 341, in get_device_name
return get_device_properties(device).name
File "/root/anaconda3/envs/test/lib/python3.8/site-packages/torch/cuda/__init__.py", line 371, in get_device_properties
_lazy_init() # will define _get_device_properties
File "/root/anaconda3/envs/test/lib/python3.8/site-packages/torch/cuda/__init__.py", line 229, in _lazy_init
torch._C._cuda_init()
RuntimeError: CUDA unknown error - this may be due to an incorrectly set up environment, e.g. changing env variable CUDA_VISIBLE_DEVICES after program start. Setting the available devices to be zero.
I try sudo apt-get install nvidia-modprobe, sudo reboot .I use lxc container, the cuda is 11.7. torch is 1.13.0+cu117, nvidia is 535, please help me . thank you