Installation¶
To install the Gaussian Splatting Toolkit, follow these steps:
1. Clone the Repository¶
Clone the repository from GitHub:
git clone https://github.com/H-tr/gaussian-splatting-toolkit.git --recursive
3. Install Third-Party Dictionaries (if applicable)¶
Colmap: Download the dictionary file from the Colmap repository
4. Install Dependencies¶
Install the required dependencies using pip:
pip install -e .
Alternatively, you can use conda to create a virtual environment and install the dependencies:
conda create -n gstk python=3.10.13 -y
conda activate gstk
pip install torch torchvision # Please make sure you installed the correct torch version with your cuda
pip install -e .
Note: Replace the Python version and other dependencies as needed based on your project requirements.