コンテンツにスキップ

Top

ERROR: Could not find a version that satisfies the requirement torch (from versions: none)

PyTorch を入れようとしたところ、

> pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121

ERROR: Could not find a version that satisfies the requirement torch (from versions: none) 
ERROR: No matching distribution found for torch

という謎エラーが出て困った。

調べたらPythonのバージョンが新しすぎると起きるみたい。

現在のPythonのバージョンは3.12。torchが対応しているバージョンは...
https://pypi.org/project/torch/

Programming Language
    C++
    Python :: 3
    Python :: 3.8
    Python :: 3.9
    Python :: 3.10
なので3.10までだ!

仕方ないのでPythonをアンインストールして、3.10を入れなおしてもう一度やったら....

> pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121

Looking in indexes: https://download.pytorch.org/whl/cu121
Collecting torch
  Downloading https://download.pytorch.org/whl/cu121/torch-2.1.2%2Bcu121-cp310-cp310-win_amd64.whl (2473.9 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.5/2.5 GB 1.3 MB/s eta 0:00:00

なんか動き始めた!

やったね!以上!