1
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?

windows pipenv環境にpytorch+cudaをインストールする。

Last updated at Posted at 2024-08-09

pyenv、pipenv環境はなんとかできた!

pyinstallerでexeを作りたい!
pipenvで仮想環境を作って、最小限のライブラリでEXE化するんだよ、ということで、まず仮想環境だったのですが、まずこれがよくわかんない!
pyenvとpipenvと、最初はどちらかが誤記なのかと思ってました。
以下の記事がwindowsでの仮想環境のセットアップを丁寧に書いてあり、とても参考になりました。

pytorch+cudaをpipenvで導入したい!

pipenv install 〇〇で、順調にライブラリをインストールしていったのですが、困ったのがpytorchです。
pytorchの公式では、下のように
image.png
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121
と記載すれば、pipでインストールできると書いてありますが、pipenvでは下記のように書いてもうまくいきません。
pipenv install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121

じゃあ、どうしたらええのんー?
下の記述が参考になりました。

pipenv install torch --index https://download.pytorch.org/whl/cu121
pipenv install torchvision --indexl https://download.pytorch.org/whl/cu121
pipenv install torchaudio --index https://download.pytorch.org/whl/cu121

これでOKでした。
よかったよかった!

1
0
2

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
1
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?