ある日pip3 install torch
するもなぜか失敗する
$ pip3 install torch
Defaulting to user installation because normal site-packages is not writeable
Collecting torch
Downloading torch-1.10.2-cp39-cp39-manylinux1_x86_64.whl (881.9 MB)
Killed
$ python -c "import torch"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'torch'
色々調べるも分からない。
もしかして最新のpytorchのバージョンが上がってずれてるのかも?と思いサイトを確認すると以下で1.10
になっているようだった。
https://pytorch.org/blog/pytorch-1.10-released/
https://github.com/pytorch/pytorch/releases
22 Oct 2021 PyTorch 1.10 Release, including CUDA Graphs APIs, Frontend and compiler improvements
という事でパッケージをアップデート
$ pip install -U pip
インストール再チャレンジ
$ pip install torch
Defaulting to user installation because normal site-packages is not writeable
Collecting torch
Downloading torch-1.10.2-cp39-cp39-manylinux1_x86_64.whl (881.9 MB)
\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501 881.9/881.9 MB ? eta 0:00:00
Collecting typing-extensions
Downloading typing_extensions-4.1.1-py3-none-any.whl (26 kB)
Installing collected packages: typing-extensions, torch
WARNING: The scripts convert-caffe2-to-onnx, convert-onnx-to-caffe2 and torchrun are installed in '/home/ubuntu/.local/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed torch-1.10.2 typing-extensions-4.1.1
$ python -c "import torch"
成功した!よかった!