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
In the documentation it is said one should use pip install git+https://github.com/nerfstudio-project/gsplat.git
to build the CUDA code during installation.
An alternative that allows one to build the CUDA code during installation but use the published package from pypi.org is to use pip install --no-binary=gsplat gsplat which will do the installation using the source package instead of the wheel file
it would be great to document this option too.
The text was updated successfully, but these errors were encountered:
related to this point, I would be curious to understand the motivation behind publishing wheels without pre-build binaries on pypi.org. My understanding is that in general wheels are expected to contain binaries. Having wheels without the pre-compiled binaries seems a bit confusing and somehow makes the installation process more complex on windows because one need then to make sure cl.exe is on the path at runtime.
the possibility to install with pip install --no-binary=gsplat gsplat has been added to the windows installation documentation in this PR #365. It could also be added on the main readme page too
In the documentation it is said one should use pip install
git+https://github.com/nerfstudio-project/gsplat.git
to build the CUDA code during installation.
An alternative that allows one to build the CUDA code during installation but use the published package from
pypi.org
is touse pip install --no-binary=gsplat gsplat
which will do the installation using the source package instead of the wheel fileit would be great to document this option too.
The text was updated successfully, but these errors were encountered: