2

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
Yaroslav Admin
  • 13,880
  • 6
  • 63
  • 83
Mario Caka
  • 21
  • 3

2 Answers2

1

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'
0

Put quotes around the git URL.

pip install --user -e \ 
    'git+https://github.com/hplgit/scitools.git#egg=scitools'
Dan Lowe
  • 51,713
  • 20
  • 123
  • 112
  • I can't duplicate this problem on my Mac using bash, so unfortunately I don't have another idea what is wrong... – Dan Lowe Oct 14 '15 at 14:21