无法更新 RVM - “致命:无法找到“http”的远程帮助程序
我在 Ubuntu 8.04 上运行 RVM 1.1.6,突然无法再更新到最新版本。
~ rvm get head
Original installed RVM version:
rvm 1.1.6 by Wayne E. Seguin ([email protected]) [http://rvm.beginrescueend.com/]
fatal: Unable to find remote helper for 'http'
Installed RVM HEAD version:
rvm 1.1.6 by Wayne E. Seguin ([email protected]) [http://rvm.beginrescueend.com/]
谷歌搜索“致命:无法找到‘http’的远程帮助程序”只给了我一些结果,似乎早期版本的 Git 不支持 HTTP,但我的 Git 版本相当新。
~ git --version
git version 1.7.3.2
任何想法将不胜感激!
I'm running RVM 1.1.6 on Ubuntu 8.04 and all of a sudden I can't update to the latest version anymore.
~ rvm get head
Original installed RVM version:
rvm 1.1.6 by Wayne E. Seguin ([email protected]) [http://rvm.beginrescueend.com/]
fatal: Unable to find remote helper for 'http'
Installed RVM HEAD version:
rvm 1.1.6 by Wayne E. Seguin ([email protected]) [http://rvm.beginrescueend.com/]
Googling for "fatal: Unable to find remote helper for 'http'" just gave me a few results, it seems like earlier versions of Git didn't support HTTP, but my Git version is fairly recent.
~ git --version
git version 1.7.3.2
Any ideas would be appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我遇到了同样的问题,似乎 git 版本缺少curl 和 expat 支持。我可以通过自己编译git版本来解决它。
I ran into the same issue and it seemed that the git version was missing curl and expat support. I could resolve it by compiling the git version myself.
我还必须在 Ubuntu 8.04 上运行它,否则它找不到 libcurl。
I had to also run this on Ubuntu 8.04 or it doesnt find libcurl.
由于没有 sudo 或 root 访问权限,我不得不采取一些不同的做法。也许因此,使用通常的
./configure --with-options
路由来配置 git 对我来说不起作用。这是我采取的步骤,以防对其他人有帮助:With no sudo or root access I had to do things a bit differently. Perhaps as a result, using the usual
./configure --with-options
route to configuring git did not work for me. Here's the steps I took in case it helps someone else: