排查得到:
webm$ git clone https://git.chromium.org/webm/libvpx.git
Cloning into libvpx...
fatal: Unable to find remote helper for 'https'
解决:
How did you install git, and which version of it do you have? Can you
clone other git repos hosted via HTTP manually using "git clone"? http://lists-archives.org/git/708090-report-remote-helper-exec-failures.html suggests
that this may be a problem with your copy of git not being able to run its remote helper for HTTP.
git 安装不正确!!!缺少对http的支持,有些包没装好
Git is reasonably self-sufficient, but does depend on a few external
programs and libraries. Git can be used without most of them by adding
the approriate "NO_<LIBRARY>=YesPlease" to the make command line or
config.mak file.
- "zlib", the compression library. Git won't build without it.
- "ssh" is used to push and pull over the net.
- A POSIX-compliant shell is required to run many scripts needed
for everyday use (e.g. "bisect", "pull").
- "Perl" version 5.8 or later is needed to use some of the
features (e.g. preparing a partial commit using "git add -i/-p",
interacting with svn repositories with "git svn"). If you can
live without these, use NO_PERL.
- "openssl" library is used by git-imap-send to use IMAP over SSL.
&n

在Ubuntu系统中遇到Git克隆仓库失败的问题,原因是Git安装不完整,缺乏对HTTP的支持。解决方案是通过`sudo apt-get install git git-core`重新安装Git。此外,还解决了在编译WebRTC时遇到的`alsa/asoundlib.h`头文件缺失问题,通过安装`libasound2-dev`解决。此外,还提到了`gtk+-2.0`包的缺失和`pulseaudio`库的安装需求。
最低0.47元/天 解锁文章
1465

被折叠的 条评论
为什么被折叠?



