-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
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
Docker build error when installing pytorch #57
Comments
Hi. Thanks for the interest! I believe the problem of yours is not with limap, but the problem with installing pytorch. You need to refer to https://pytorch.org/get-started/previous-versions/ to install pytorch compatible with your CUDA. However, I think torch 1.12.0 does not support CUDA 11.7 from the link. So maybe you can give 1.13.1 a try with: "pip install torch==1.13.1+cu117 torchvision==0.14.1+cu117 torchaudio==0.13.1 --extra-index-url https://download.pytorch.org/whl/cu117" |
Thank for the reply, I thought the pytorch version would depend on the image that you based on, no?. In your Dockerfile it is NVIDIA CUDA 11.5. |
I also run into the same series of issue. @AustrianOakvn were you able to successfully build through docker? By system-wide installation I assumed you meant building from scratch, and not through the container. Could you please provide the changes you made, in case you managed to build it successfully. EDIT : I found out that the above error was not actually with hawp but something to do with calling setup.py. A similar issue with xformers led me to installing wheel before installing everything else. |
First, thank you for the great work. I'm trying to install limap by docker but currently there are issues with my buid.
When i ran the build with the
Dockerfile
provided in the repo, i encounteredNo matching distribution found for torch==1.12.0
Then i changed the torch version to
torch==1.11.0 torchvision==0.12.0
similar to the previous commit. This time, there is build issue with the hawp,No module name torch
.My system configuration is:
Is there any mismatch of torch and hawp, or my OS configuration.
The text was updated successfully, but these errors were encountered: