python公式ページからバージョン3.8.4をインストールしpytorchgのページから自分の環境にあったものを選び、
pip install torch==1.5.1+cu101 torchvision==0.6.1+cu101 -f https://download.pytorch.org/whl/torch_stable.html
このコマンドを入力しバージョンを確認しようすると、
C:\Windows\system32>py -c "import torch; print( torch.__version__ )" Traceback (most recent call last): File "<string>", line 1, in <module> File "C:\Users\USER\AppData\Local\Programs\Python\Python38\lib\site-packages\torch\__init__.py", line 81, in <module> ctypes.CDLL(dll) File "C:\Users\USER\AppData\Local\Programs\Python\Python38\lib\ctypes\__init__.py", line 373, in __init__ self._handle = _dlopen(self._name, mode) FileNotFoundError: Could not find module 'C:\Users\USER\AppData\Local\Programs\Python\Python38\lib\site-packages\torch\lib\caffe2_nvrtc.dll' (or one of its dependencies). Try using the full path with constructor syntax.
このようなエラーが出てしまいます。
なにか解決方法などがあれば、教えていただきたいです。
Windows10です。
あなたの回答
tips
プレビュー