You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pinning exact versions of dependencies in a package published on PyPI can cause problems for people with specific requirements. Please see this StackOverflow answer for background.
In my case, my GPU version is newer than what is supported by the version of torch listed in requirements.txt / setup.py.
Also I want to use one of the PyTorch packages (python-pytorch-opt-cuda) provided by my distro (Arch Linux), even in virtualenvs, because of specific compilation options and disk space concerns.
My distro package for PyTorch also depends on a version of numpy which is incompatible with the version in requirements.txt / setup.py.
These are just some of the issues that people like me may face.
The text was updated successfully, but these errors were encountered:
Pinning exact versions of dependencies in a package published on PyPI can cause problems for people with specific requirements. Please see this StackOverflow answer for background.
In my case, my GPU version is newer than what is supported by the version of
torch
listed inrequirements.txt
/setup.py
.Also I want to use one of the PyTorch packages (
python-pytorch-opt-cuda
) provided by my distro (Arch Linux), even in virtualenvs, because of specific compilation options and disk space concerns.My distro package for PyTorch also depends on a version of
numpy
which is incompatible with the version inrequirements.txt
/setup.py
.These are just some of the issues that people like me may face.
The text was updated successfully, but these errors were encountered: