1

I am on Ubuntu 14.10 and I try to install new mongodb driver, but I have this error:

configure: error: Cannot find OpenSSL's libraries
ERROR: `/tmp/pear/temp/mongodb/configure' failed

I find that i need before installing new driver to install pkg-config, but when I try that I get following error:

E: Package 'pkg-config' has no installation candidate

Can someone please help me?

OstMil
  • 113

1 Answers1

0

Ubuntu 14.10 : Please replace all text in /etc/apt/sources.list with this new text

deb http://old-releases.ubuntu.com/ubuntu/ utopic main restricted
deb http://old-releases.ubuntu.com/ubuntu/ utopic multiverse universe
deb http://old-releases.ubuntu.com/ubuntu/ utopic-updates main restricted
deb http://old-releases.ubuntu.com/ubuntu/ utopic-updates multiverse universe
deb http://old-releases.ubuntu.com/ubuntu/ utopic-backports main restricted
deb http://old-releases.ubuntu.com/ubuntu/ utopic-backports multiverse universe
deb http://old-releases.ubuntu.com/ubuntu/ utopic-security main restricted
deb http://old-releases.ubuntu.com/ubuntu/ utopic-security multiverse universe

... and run sudo apt-get update

Installing "OpenSSL's libraries" : sudo apt-get install libssl-dev pkg-config


Knud Larsen
  • 3,134