achalddave commented on issue #10174: Install v0.10.0 errors URL: https://github.com/apache/incubator-mxnet/issues/10174#issuecomment-492064928 For what it's worth, I was able to fix this by following the instructions here: https://gist.github.com/myusuf3/7f645819ded92bda6677 (replicated below): - Delete the relevant section from the .gitmodules file. - Stage the .gitmodules changes git add .gitmodules - Delete the relevant section from .git/config. - Run git rm --cached path_to_submodule (no trailing slash). - Run rm -rf .git/modules/path_to_submodule (no trailing slash). - Commit git commit -m "Removed submodule <name>" - Delete the now untracked submodule files rm -rf path_to_submodule to remove the cub submodule, and adding the submodule back with `git submodule add https://github.com/NVlabs/cub.git cub`.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
