/usr/bin/ld: warning: libcrypto.so.1.0.0, needed by /usr/local/lib/libcurl.so, may conflict with libcrypto.so.1.1

Hi!

Need help for that here to fix:

/usr/bin/ld: warning: libcrypto.so.1.0.0, needed by /usr/local/lib/libcurl.so, may conflict with libcrypto.so.1.1

Can I remove package "libssl1.0.0" from my system without problems if package "libssl1.1" is installed?

Which packages of "libcurl" do I need?

Installed packages of libcurl:

libcurl3-gnutls
libcurl4
libcurlpp-dev
libcurlpp0

Which of these packages can I remove without problems to fix that
conflict?

Usually such libraries should be installed using apt.
So you have to open terminal and type:

sudo rm /usr/local/lib/libcurl.so*
sudo apt-get install --reinstall libssl-dev  libcurl4-openssl-dev

ok, thanks @ Norbert_X