使用curl出现gnutls_handshake() failed: Error in the pull function

使用curl出现gnutls_handshake() failed: Error in the pull function

问题:
使用curl安装k8s的时候出现失败
使用系统:Ubuntu16.04使用curl出现gnutls_handshake() failed: Error in the pull function_第1张图片
解决:
1.安装curl的依赖包libcurl4-openssl-dev
注:默认curl是使用libcurl4-gnutls-dev(这一步可能没什么用,是我之前在网上找的解决方案)
使用curl出现gnutls_handshake() failed: Error in the pull function_第2张图片

2.下载git-repo镜像
使用curl出现gnutls_handshake() failed: Error in the pull function_第3张图片
3.因为repo会尝试访问git源来更新,但是需要外网,就会报错失败,如果想使用tuna的镜像源进行更新,可以将如下内容复制到你的~/.bashrc里

export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/'

4.再次尝试下载,就会成功啦~
在这里插入图片描述

你可能感兴趣的:(curl)