从github安装python库

从github安装python库,python,github,Python,Github,您好,我正在尝试从github安装此python库: 然而,当我打字时: pip install git+git://github.com/eskerda/PyBikes.git 或 它返回: Cannot find command 'git' 这是我第一次尝试从github安装库,所以可能我遗漏了一些明显的东西 谢谢 检查: pip目前支持通过git、git+https和git+ssh进行克隆: Here are the supported forms: git+git://git.

您好,我正在尝试从github安装此python库:

然而,当我打字时:

pip install git+git://github.com/eskerda/PyBikes.git

它返回:

Cannot find command 'git'
这是我第一次尝试从github安装库,所以可能我遗漏了一些明显的东西

谢谢

检查:

pip目前支持通过gitgit+httpsgit+ssh进行克隆:

 Here are the supported forms:
 git+git://git.myproject.org/MyProject#egg=MyProject 
 git+https://git.myproject.org/MyProject#egg=MyProject
 git+ssh://git.myproject.org/MyProject#egg=MyProject
 git+git@git.myproject.org:MyProject#egg=MyProject

确保您在系统中安装了
git
,并且它位于路径中。
 Here are the supported forms:
 git+git://git.myproject.org/MyProject#egg=MyProject 
 git+https://git.myproject.org/MyProject#egg=MyProject
 git+ssh://git.myproject.org/MyProject#egg=MyProject
 git+git@git.myproject.org:MyProject#egg=MyProject