Hi, I need to merge with other people's jupyter notebooks using Git. Typical git merge does not work for jupter notebooks.
After pip install nbdime, I can run the following in anaconda prompt:
nbdime config-git --enable --global
But in the Git Bash command window, when am trying to config the nbmergedriver and nbdiffdriver, always get the error saying command not found:
LIAOL@LAP02964 MINGW64 /c/Backup_from_D/Projects/test_jupyter_merge (feature/WFH)
$ git-nbmergedriver config --enable --global
bash: git-nbmergedriver: command not found
LIAOL@LAP02964 MINGW64 /c/Backup_from_D/Projects/test_jupyter_merge (feature/WFH)
$ git-nbdiffdriver config --enable --global
bash: git-nbdiffdriver: command not found
Anybody know how i could fix this? Thanks.