Installation#

SplatWizard is available on pypi, and can be installed with pip:

pip install splatwizard

Since the installation process requires significant time to precompile all components, you can monitor the installation progress using the --verbose option.

pip install splatwizard --verbose

Additionally, pip compiles components in an isolated environment by default. You can use --no-build-isolation to perform the compilation directly in the current environment. Make sure torch and ninja are installed before running the command.

pip install splatwizard --verbose --no-build-isolation

To speed up compilation, the installation process uses all available CPU cores by default. If you need to limit the number of cores used for compilation, you can specify the maximum cores used via environment variable MAX_BUILD_JOBS. The following command will use up to 8 CPU cores during compilation.

MAX_BUILD_JOBS=8 pip install splatwizard --verbose --no-build-isolation