0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Pytorchを使用する際に「OSError: libcudart.so.12: cannot open shared object file: No such file or directory」と出るときの対処

Posted at

nvidia-sminvcc -Vが使える環境下において
何も考えず脳死でPytorchをpip install torchと実行したときに,libcudart.soが無いと怒られます。

これはNVIDIA GPU周りのトラブルではなく、脳死でインストールした自分のせいです。

対処法

  1. nvcc -Vでcudaのバージョンを確認してください。
  2. PyTorchのページに行き,cudaのバージョンと合うものを選んでインストールしてください。
    例:cuda:11.8の場合
    pip install torch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2 --index-url https://download.pytorch.org/whl/cu118
  3. pythonコマンドを入力し,対話モードにします。
  4. import torchをした後、torch.cuda.is_availabe()を入力し、Trueと出ればPytorchが使えます。
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?