To install MongoDB, follow the steps below based on your operating system:

For Ubuntu Users 🐧

  1. Add MongoDB Repository

    sudo apt-get update
    sudo apt-get install -y mongodb-org
    
    Ubuntu
    [Install MongoDB on Ubuntu](/installation/ubuntu)
  2. Start MongoDB Service

    sudo systemctl start mongod
    sudo systemctl enable mongod
    
    Ubuntu_Installation

For macOS Users 🍎

  1. Using Homebrew

    brew tap mongodb/brew
    brew install mongodb-community
    
    Homebrew
  2. Verify Installation

    mongod --version
    
    macos_mongodb

For Windows Users 💻

  1. Download Installer
    Visit MongoDB Official Website to download the Windows installer.

    MongoDB_Installer
  2. Run Installer
    Follow the on-screen prompts to complete the installation.

    Windows_Installation

Need further assistance? Check our quickstart guide for step-by-step tutorials! 🚀