Open Deaddawn opened 2 months ago
same question, have u solved it?
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:
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.
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
Manual Download: Alternatively, you can manually download the repositories from the following links: • simple-knn • diff-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!
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**