Как я могу настроить scitools.std в Mac?
Я попытался сделать это в моем терминале:
pip install --user -e \
git+https://github.com/hplgit/scitools.git#egg=scitools
Но это не удалось с ошибкой:
-bash: git+https://github.com/hplgit/scitools.git#egg=scitools: No such file or directory
2 ответа
Когда вы вводите команду в терминале, вы помните, чтобы пропустить '\'?
pip install --user -e 'git+https://github.com/hplgit/scitools.git#egg=scitools'
Поместите кавычки вокруг git URL.
pip install --user -e \
'git+https://github.com/hplgit/scitools.git#egg=scitools'