We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
torchaudio
Trying to install the conda environment with mamba env create -f environment.yml yields to the error on M1 macOS:
mamba env create -f environment.yml
Encountered problems while solving. Problem: nothing provides requested torchaudio
This seem to be related to this issue.
I recommend to install the pip version of all PyTorch dependencies. Maybe change the environment.yml pip packages to
environment.yml
- pip: - build - tensorboard - pytorch-lightning - torch - torchvision - torchaudio
Seems to work for me
In [1]: import torch, torchvision, torchaudio In [2]: torch.__version__ Out[2]: '1.11.0' In [3]: torchvision.__version__ Out[3]: '0.12.0' In [4]: torchaudio.__version__ Out[4]: '0.11.0'
The text was updated successfully, but these errors were encountered:
Testing env with pip install torch
9966281
Might solve #35 but can't be tested in CI
No branches or pull requests
Trying to install the conda environment with
mamba env create -f environment.yml
yields to the error on M1 macOS:This seem to be related to this issue.
I recommend to install the pip version of all PyTorch dependencies. Maybe change the
environment.yml
pip packages toSeems to work for me
The text was updated successfully, but these errors were encountered: