【Python】pip install git+https://github.com/xxx失败

这里写自定义目录标题

直接 pip install git 安装报错

pip install git+https://github.com/xxx
Defaulting to user installation because normal site-packages is not writeable
Collecting git+https://github.com/sciosci/demographicx
  Cloning https://github.com/sciosci/demographicx to /tmp/pip-req-build-irmydfbx
  ERROR: Error [Errno 2] No such file or directory: 'git': 'git' while executing command git version
ERROR: Cannot find command 'git' - do you have 'git' installed and in your PATH?
Note: you may need to restart the kernel to use updated packages.

貌似是说没有git包,但是pip install git以及pip install gitpython之后依然报错,参考https://blog.csdn.net/qq_43391414/article/details/127480160

首先下载到本地

git clone 链接

然后进入所在目录

cd xxx

安装

pip install .

如果有其他依赖包由于连接可能会报错,这个时候先把其他依赖从国内源先下载下来再安装就可

你可能感兴趣的:(bugs,git,python,pip)