0

I need to use npm together with building C++ application using curl++. npm cannot be installed with libcurl4-openssl-dev on Ubuntu. If I use libcurl4-nss-dev instead of libcurl4-openssl-dev, my code compiles sucessfully, but gives error "No URL set!" in the same situation, when it worked correctly on libcurl4-openssl-dev. How can I solve this?

IncrediblePony
  • 645
  • 9
  • 31
Stepan Yakovenko
  • 8,670
  • 28
  • 113
  • 206

1 Answers1

2

I have found a workaround: using libcurl4-gnutls-dev instead of libcurl4-nss-dev or libcurl4-openssl-dev.

Stepan Yakovenko
  • 8,670
  • 28
  • 113
  • 206