pip install command throws error
See original GitHub issueRunning pip install git+ssh://git@github.com/airbnb/knowledge-repo.git[all]
gives the following error
Collecting git+ssh://git@github.com/airbnb/knowledge-repo.git[all]
Cloning ssh://git@github.com/airbnb/knowledge-repo.git[all] to /var/folders/l4/2hk3q0sj5xx3j19r0ktrf23r0000gn/T/pip-xewbmm-build
fatal: remote error:
%s is not a valid repository name
Email support@github.com for help
Command "git clone -q ssh://git@github.com/airbnb/knowledge-repo.git[all] /var/folders/l4/2hk3q0sj5xx3j19r0ktrf23r0000gn/T/pip-xewbmm-build" failed with error code 128 in None
Issue Analytics
- State:
- Created 7 years ago
- Comments:6
Top Results From Across the Web
pip or pip3 install command throwing error [duplicate]
Whenever I run pip install <PACKAGE-NAME> . cmd throws an error. It is only when I run pip install <PACKAGE-NAME> --user the command...
Read more >pip won't run. throws errors instead - Ask Ubuntu
To enable the use of pip from the command line, ensure the Scripts subdirectory of your Python installation is available on the system...
Read more >Python pip install invalid syntax Solution - Career Karma
The pip install invalid syntax error is raised when you try to install a Python package from the interpreter. To fix this error,...
Read more >PIP Install Invalid Syntax - Don't Miss the Description - YouTube
Why does this error even come? Where should you execute Pip install command & much more? We are going to cover this basic...
Read more >pip Command Not Found – Mac and Linux Error Solved
When using Python, you might need to install and use certain packages. And there is a command available for that known as 'pip'....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @ametersky,
Thanks for your interest in the knowledge repository!
In some shells, you need to encapsulate the package name in quotes, i.e.:
pip install "git+ssh://git@github.com/airbnb/knowledge-repo.git[all]"
This install command is a bit outdated though, since we haven’t updated our README.md properly to reflect the simplest way to install this software (we’ll fix that imminently). The above command will install directly off the master branch, which we do not recommend. You’re better off using
pip install --upgrade knowledge-repo
, which installs the latest stable release from PyPI. If you are running this on a server, it’s probably worth installing all potential dependencies at the same time usingpip install --upgrade "knowledge-repo[all]"
.Please feel free to reopen this issue if this doesn’t solve your problem.
Best, M
@bulam I’m not sure what your command would have done, I worked around it by downloading a .zip file from github and then doing
pip install seaborn_v0.7.zip
.