Reputation: 815
I'm using the Anaconda package manager, and I installed the mongodb
package in Anaconda using the conda install mongodb
command. But when I run mongo
to start the Mongo shell, I get an error as follows:
mongo: error while loading shared libraries: libssl.so.6: cannot open shared object file: No such file or directory
How do I fix this issue?
Upvotes: 5
Views: 8924
Reputation: 56
Try re-installing the latest version of MongoDB through the Anaconda package manager
conda install -c anaconda mongodb=3.3.9
Seed details in the Anaconda documentation
Upvotes: 4