Install mongoDB on a non avx computer

I want to install mongoDB that will work on my linux machine (ubuntu 22.05).
The problem is that mongoDB version 6 requires AVX support and I have a machine with a CPU that does not support AVX.
What version of mongo DB supports non AVX versions?

Welcome to the forum!

You can find out if AVX is there but not activated by trying

grep avx /proc/cpuinfo

If no flags appear, it’s really absent.

Version 4.4.29 is the last without an AVX requirement. Search MongoDB - releases - archive.

Be aware: No support, no security patches and probably doesn’t work with modern tools requiring v5.0+.

The cloud-based alternative is the free tier of MongoDB Atlas.

Best Regards

As said, looks like V4. Unless you can build from source and disabled the requirement. Or find a docker image with it disabled (issue has some links).