I tried to do this in my terminal:
pip install --user -e \ git+https://github.com/hplgit/scitools.git#egg=scitools
But it failed with an error:
-bash: git+https://github.com/hplgit/scitools.git#egg=scitools: No such file or directory
Put quotes around the git URL.
pip install --user -e \ 'git+https://github.com/hplgit/scitools.git#egg=scitools'
When you type the command in the terminal you remember to omit the '\' ?
pip install --user -e 'git+https://github.com/hplgit/scitools.git#egg=scitools'
Copyright © 2021 Jogjafile Inc.
Put quotes around the git URL.