realsense d435 安装librealsense 在 make 阶段 git clone libcurl失败的问题

问题: fatal: unable to access 'https://github.com/curl/curl.git/': GnuTLS recv error (-110): The TLS connection was non-properly terminated

解决方案:

直接去 https://github.com/curl/curl 下载curl.zip。

注释掉 ~/librealsense/CMake 文件下的 external_libcurl.cmake 的 GIT_REPOSITORY "git://github.com/curl/curl.git" 。即在 GIT_REPOSITORY "git://github.com/curl/curl.git"前加#。

并将提前下载后的 curl.zip 解压后 改名为 libcurl ,放入到 ~/librealsense/build/third-party。

由此可跳过git clone libcurl 失败的问题。

感觉直接下载zip比git clone快。

你可能感兴趣的:(git,node.js,vue.js)