我尝试同时使用pip / pip3和conda安装git。 使用pip / pip3时,我在shell中得到以下内容:
(base) Micheles-MacBook-Air:~ michelegiglioni$ pip install git
ERROR: Could not find a version that satisfies the requirement git (from versions:none)
ERROR: No matching distribution found for git
(base) Micheles-MacBook-Air:~ michelegiglioni$ pip3 install git
Collecting git
ERROR: Could not find a version that satisfies the requirement git (from versions: none)
ERROR: No matching distribution found for git
WARNING: You are using pip version 19.2.3, however version 20.1.1 is available.
我也将git更新到了最新版本,并重新运行pip install命令,但没有成功。 我也尝试过以下操作conda:
conda install -c conda-forge git
它显然下载了git,但是JupiterLab中的结果仍然如下:
import git
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-1-99021728f681> in <module>
----> 1 import git
ModuleNotFoundError: No module named 'git'
您对我如何继续使用git模块有任何建议吗? 谢谢
答案 0 :(得分:1)
PyPI官方网站中没有git包,您可以执行命令pip install git
。这就是您的第一个命令失败的原因。可能是您使用了错误的软件包名称。
如果this是您要查找的软件包,请尝试使用命令pip install gitpython
。