I am trying to install MongoDB on my personal machine for a Node project through the command line using npm install --save mongodb. MongoDB shows up in the dependencies in my package.json file with a current version, but when I run mongodb -v, mongod, or just try to open up the mongo shell by running "mongo" I get these errors:
"command not found: mongodb"
"command not found: mongod"
"command not found: mongo"
I have also tried running sudo mongod to no avail. Does anyone have any suggestions? I have looked at a lot of documentation at this point and am not sure where to turn.