Reputation: 210
need help. Trying to install Mongodb in kali linux 2, using the command
sudo apt-get install mongodb-org
but it always gives me the following error:
The following packages have unmet dependencies:
mongodb-org : Depends: mongodb-org-shell but it is not going to be installed
Depends: mongodb-org-server but it is not going to be installed
Depends: mongodb-org-mongos but it is not going to be installed
Depends: mongodb-org-tools but it is not going to be installed
I have tried installing those packages by themself, but couldn't be found in the repository of kali. [1]: https://i.sstatic.net/Tz1bF.png
Upvotes: -2
Views: 3032
Reputation: 31
try Aptitude instead
sudo aptitude install mongodb-org
also did you try
sudo apt-get clean
sudo apt-get autoclean
Upvotes: 3