How can I configure scitools.std in mac?

367 views Asked by At

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
2

There are 2 answers

1
Dan Lowe On

Put quotes around the git URL.

pip install --user -e \ 
    'git+https://github.com/hplgit/scitools.git#egg=scitools'
0
Christian Pedersen On

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'