Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在我的终端中这样做:
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
当您在终端中键入命令时,您记得省略 '\' 吗?
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'