curl: (2) Failed Initialization

后端 未结 2 2052
攒了一身酷
攒了一身酷 2021-01-13 06:40

I have installed libcurl 7.33.0 on Linux. I used the following commands to install:

./configure  
make  
make install

If I run curl h

2条回答
  •  情书的邮戳
    2021-01-13 07:01

    Ubuntu does include curl by default as far as I know. So if you don't need specifically the 7.33.0 version, then purge it and install it again from the repository.

    #remove everything you had with curl
    sudo apt-get purge curl
    #optional update
    sudo apt-get update && sudo apt-get upgrade
    #install it from repository
    sudo apt-get install curl 
    

提交回复
热议问题