gpt4 book ai didi

python - 如何使用 Python Pip 安装软件,从 Github 拉包?

转载 作者:IT老高 更新时间:2023-10-28 22:00:09 25 4
gpt4 key购买 nike

我正在尝试从 Github 安装一个包,使用 Pip,使用以下语法

pip install -e git+https://github.com/facebook/python-sdk.git#egg=FacebookSDK

并得到错误“找不到命令 git”。 This Question有(未经检查的)答案说需要在系统上安装 Git。但是,this Answer Pip 声明“Git、Subversion、Bazaar 和 Mercurial 都支持”。

Pip documentation还说它具有“对其他版本控制系统(Git、Mercurial 和 Bazaar)的 native 支持”。

那么如何用 Pip 安装这个包呢?我真的不想想在我的 VPS 上安装 Git。或者是否有任何非 Pip 工具,仅用于从存储库中提取文件(无需进行完整的 Git 安装)?

更新 - 所以我硬着头皮在我的 VPS 上安装了 Git。 Pip 仍然无法抓取包,但它给出了一组 不同 错误,所以 - 进步。 :) 我终于做到了

git clone http://github.com/facebook/python-sdk.git

(注意http,而不是https),并设法下载包,然后手动安装。

最佳答案

如果我没记错的话,你需要在你的机器上安装 git 客户端。如果您没有安装 git,请尝试以下操作:

pip install https://github.com/facebook/python-sdk/zipball/master

pip install https://github.com/facebook/python-sdk/tarball/master

您需要安装 git-core,因为 git:// 协议(protocol)与任何东西都没有关联。

sudo apt-get install git-core

关于python - 如何使用 Python Pip 安装软件,从 Github 拉包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7322334/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com