This guide will walk you through the installation of Git, Node.js, Python, Express, and MongoDB on your system.
- Download the installer from the official Git website.
- Run the downloaded installer.
- Follow the on-screen instructions.
- Select default settings if you are unsure of any options.
- Once installed, verify the installation by opening Command Prompt and running:
git --version
- Download the installer from the official Node.js website.
- Run the downloaded installer and follow the on-screen instructions.
- Make sure to check the box that adds Node.js to your PATH.
- Once installed, verify by running the following commands in Command Prompt:
node --version npm --version
- Download the installer from the official Python website.
- Run the installer and ensure to check the box Add Python to PATH.
- Follow the on-screen instructions to complete the installation.
- Verify the installation by running:
python --version pip --version
Express is a Node.js framework. To install it, you’ll need npm, which is included with Node.js.
- Open Command Prompt.
- Run the following command to install Express globally:
npm install -g express
- Verify the installation by running:
npm list -g express
- Download the installer from the official MongoDB website.
- Run the installer and follow the on-screen instructions.
- Make sure to select the option to install MongoDB as a service.
- Once installed, verify the installation by running:
mongo --version