Train Heartnet
Train Heartnet

Reputation: 815

How to run MongoDB in Anaconda?

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

Answers (1)

Paul Foley
Paul Foley

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

Related Questions