I'm trying to update my mongodb version on my raspberry pi. I've runned following commands
$ sudo apt-get install mongodb
So far so good. I can access the mongo shell by typing mongo in the console. I can start the mongodb with the service:
$ sudo service mongodb start
The mongodb version is 2.4.14.
The mongodb works fine in projects. My problem is that in some of my mongo queries I use the $lookup stage. This service was released in version 3.2. Therefore my queries won't work with version 2.4.14.
I've tried to read the documentation (which there is not so much off??) to update my mongodb but I can't find a proper answer. So my question is: Is it possible to update my mongodb on my RaspberryPi, and if yes, how?
My OS informations on my raspberry pi:
Linux myRaspberryPi 4.9.41-v7+ #1023 SMP Tue Aug 8 16:00:15 BST 2017 armv7l GNU/Linux
PRETTY_NAME="Raspbian GNU/Linux 9 (stretch)"
NAME="Raspbian GNU/Linux"
VERSION_ID="9"
VERSION="9 (stretch)"
ID=raspbian
ID_LIKE=debian
/Chris