buaavrcg / LEGaussians

Pytorch Code for "LEGaussians: Language Embedded 3D Gaussians for Open-Vocabulary Scene Understanding"
https://buaavrcg.github.io/LEGaussians/
MIT License
115 stars 17 forks source link

git clone error #18

Open Deaddawn opened 2 months ago

Deaddawn commented 2 months ago

Hello, something wrong with the git process in submodule, will you take a look?

**Cloning into 'D:/workspace/3dgaus/LEGaussians/submodules/simple-knn'... Host key verification failed. fatal: Could not read from remote repository.

Please make sure you have the correct access rights and the repository exists. fatal: clone of 'git@github.com:Chuan-10/simple-knn.git' into submodule path 'D:/workspace/3dgaus/LEGaussians/submodules/simple-knn' failed Failed to clone 'submodules/simple-knn'. Retry scheduled Cloning into 'D:/workspace/3dgaus/LEGaussians/submodules/diff-gaussian-rasterization'... Host key verification failed. fatal: Could not read from remote repository.

Please make sure you have the correct access rights and the repository exists. fatal: clone of 'git@github.com:Chuan-10/diff-gaussian-rasterization.git' into submodule path 'D:/workspace/3dgaus/LEGaussians/submodules/diff-gaussian-rasterization' failed Failed to clone 'submodules/diff-gaussian-rasterization' a second time, aborting**

RobotiX101 commented 2 days ago

same question, have u solved it?

Chuan-10 commented 1 day ago

Hi,

Apologies for the delayed response! Since both repositories (simple-knn and diff-gaussian-rasterization) are public, this issue might be related to SSH authentication on your system. Here are a few steps you can try to resolve it:

  1. Check SSH Key: Ensure your SSH key is added to your system and GitHub account. You can verify this by running: ssh -T git@github.com. If this fails, you might need to add your SSH key to your SSH agent and upload it to GitHub.

  2. Switch to HTTPS: If you cannot resolve the SSH issue, you can update the submodule URL to use HTTPS instead:

    git config --file .gitmodules submodule.<path>.url https://github.com/Chuan-10/simple-knn.git
    git submodule sync
    git submodule update --init --recursive
  3. Manual Download: Alternatively, you can manually download the repositories from the following links: • simple-knndiff-gaussian-rasterization After downloading, place them in the corresponding submodule directories (submodules/simple-knn and submodules/diff-gaussian-rasterization) and install them as needed.

Let me know if these suggestions help!