I've installed pytorch and haven't had nay issues using other pytorch modules such as torchvision, but when I try to import torchaudio it returns an error:
OSError: [WinError 127] The specified procedure could not be found
If I try to install torchaudio it says requirement already satisfied.
Requirement already satisfied: torchaudio in c:\users\connor\anaconda4\envs\env_pytorch\lib\site-packages (0.12.1)
Requirement already satisfied: torch==1.12.1 in c:\users\connor\anaconda4\envs\env_pytorch\lib\site-packages (from torchaudio) (1.12.1)
Requirement already satisfied: typing-extensions in c:\users\connor\anaconda4\envs\env_pytorch\lib\site-packages (from torch==1.12.1->torchaudio) (4.3.0)
When I run pip show torch I see:
Version: 1.12.1
Summary: Tensors and Dynamic neural networks in Python with strong GPU acceleration
Home-page: https://pytorch.org/
Author: PyTorch Team
Author-email: packages@pytorch.org
License: BSD-3
Location: c:\users\connor\anaconda4\envs\env_pytorch\lib\site-packages
Requires: typing-extensions
Required-by: torchaudio, torchvision
My python version is 3.9.13, I'm running in Ananconda Spyder.
Does anybody have any suggestions on how to solve this?