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
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
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'
Put quotes around the git URL.
pip install --user -e \
'git+https://github.com/hplgit/scitools.git#egg=scitools'