banner
李大仁博客

李大仁博客

天地虽大,但有一念向善,心存良知,虽凡夫俗子,皆可为圣贤。

[Ubuntu] Ubuntu17.04 安装curl

Ubuntu 17.04 安装完毕后,没有 curl, 需要手动安装 curl

sudo apt-get install curl

报错:没有这个软件、 尝试使用添加 ppa 方式,结果 Ubuntu 17.04 下无效

sudo add-apt-repository ppa/ettercap-stable-backports
sudo apt-get update
sudo apt-get install curl

最后改为使用源代码方式安装 源代码

#下载
wget https://curl.haxx.se/download/curl-7.58.0.tar.gz
#解压
tar xvf curl-7.58.0.tar.gz
#配置
cd curl-7.58.0
./configure
#编译
make
#安装
sudo make install

奇怪的是 Ubuntu17.04 上 libcurl 是有的,为啥去掉 curl,不知道基于何种考虑

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.