gsplat icon indicating copy to clipboard operation
gsplat copied to clipboard

Unable to install wheels

Open JRRomacho opened this issue 1 year ago • 3 comments

I tried to install precompiled wheels for gsplat, but no success. Next are my machine specs:

Windows 10 Home 64-bit AMD FX-6100 16GB RAM NVIDIA GeForce GTX 1060 6GB

torch '2.3.1' cuda '11.8'

Following the instuctions, i got this response:

pip install gsplat --index-url https://docs.gsplat.studio/whl/pt23cu118 Looking in indexes: https://docs.gsplat.studio/whl/pt23cu118 ERROR: Could not find a version that satisfies the requirement gsplat (from versions: none) ERROR: No matching distribution found for gsplat

Also I directly tried with the direct .whl link pip install https://github.com/nerfstudio-project/gsplat/releases/download/v1.4.0/gsplat-1.4.0%2Bpt23cu118-cp310-cp310-win_amd64.whl ERROR: gsplat-1.4.0+pt23cu118-cp310-cp310-win_amd64.whl is not a supported wheel on this platform.

Even I tried to compile under Windows, but a got a simmilar problem to this issue: https://github.com/nerfstudio-project/gsplat/issues/327

Thanks. Kind regards.

JRRomacho avatar Oct 11 '24 11:10 JRRomacho

Looks like the problem was my Python version. It was 3.12 when "cp310" requires to be 3.10. I didn't know that. Thank you anyway.

JRRomacho avatar Oct 14 '24 10:10 JRRomacho

@liruilong940607 would it make sense to also publish the wheels for python 3.11 and 3.12? In the mean time we probably want to mention in the doc the the precompiled wheels are published only for python 3.10 at the moment

martinResearch avatar Oct 15 '24 20:10 martinResearch

Looks like the problem was my Python version. It was 3.12 when "cp310" requires to be 3.10. I didn't know that. Thank you anyway.

Ran into the same issue, no idea that cp310 means python 3.10 😅 (new to python packages and environments). It now finds the correct wheel using the pip install gsplat --index-url https://docs.gsplat.studio/whl/pt24cu124 the command.

~~But it now fails with this error:~~ ~~ERROR: Could not find a version that satisfies the requirement fsspec (from torch) (from versions: none)~~

~~I was able to fix it by manually running pip install fsspec, then rerunning the command installing gsplat~~

~~Might not related to gsplat, so I'm not sure why the error occurs 🤷~~

EDIT: I'm a noob, don't clone this repo and try to run scripts from the .\examples\ folder python will get confused resolving packages

n2k3 avatar Nov 18 '24 01:11 n2k3