【Linux系统】libcurl安装错误解决:curl: error while loading shared libraries: libcurl.so.4: cannot open shared

  1. 下载curl
    https://curl.haxx.se/download.html

  2. 解压

我下的是curl-7.64.0.tar.gz

tar -zxvf  curl-7.64.0.tar.gz
  1. 安装
cd curl-7.64.0
./configure --prefix=/usr
make
make install
  1. 安装lib
libtool --finsh /usr/local/curl/lib

他会出现这样的
【Linux系统】libcurl安装错误解决:curl: error while loading shared libraries: libcurl.so.4: cannot open shared_第1张图片
按照他说的操作

 export LD_LIBRARY_PATH=/usr/local/curl/bin

还是不能用,再加到ld.so.conf中

vi /etc/ld.so.conf

将/usr/local/curl/bin加进去

ldconfig -v 
  1. 就可以用了
curl --help

【Linux系统】libcurl安装错误解决:curl: error while loading shared libraries: libcurl.so.4: cannot open shared_第2张图片

你可能感兴趣的:(Linux系统)