question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

pip install command throws error

See original GitHub issue

Running 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:closed
  • Created 7 years ago
  • Comments:6

github_iconTop GitHub Comments

1reaction
matthewwardropcommented, Oct 12, 2016

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 using pip install --upgrade "knowledge-repo[all]".

Please feel free to reopen this issue if this doesn’t solve your problem.

Best, M

0reactions
kabadbruzzocommented, Feb 23, 2021

@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 .

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found