skip to Main Content

curl: symbol lookup error: curl: undefined symbol: curl_url_set, version CURL_OPENSSL_4

manish@manish-Latitude-3420:~$ sudo apt-get install curl

The following NEW packages will be installed:
curl
0 upgraded, 1 newly installed, 0 to remove and 0 not upgra
manish@manish-Latitude-3420:~$

manish@manish-Latitude-3420:~$ curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash –

curl: symbol lookup error: curl: undefined symbol: curl_url_set, version CURL_OPENSSL_4
manish@manish-Latitude-3420:~$
manish@manish-Latitude-3420:~$ curl_url_set -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash –
curl_url_set: command not found

2

Answers


  1. Chosen as BEST ANSWER

    I tried with curl & it did not help. still curl issue which I will solve on some other time.

    But this helped me https://askubuntu.com/a/1054720
    git clone https://github.com/curl/curl.git cd curl ./buildconf (try with sudo, if....) ./configure (same)enter image description here make make test # optional sudo make install

    make sure while creating file/folder, use with sudo command where ever it r


  2. I tried using above… It worked out

    It was a great help

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search