- Go to Visual Studio Code download website.
- Download the version suitable for your Machine.
- Once downloaded, run the installer with suitable settings.
- Install Visual Studio Installer to download additional workloads. (Optional)
- Navigate to marketplace using [Ctrl+Shift+X] and install the required extensions. (Optional)
- Go to official Python website.
- Download the compatible version for your PC.
- Install with suitable settings.
- Go to official NodeJS download website.
- Download the compatible version for your PC.
- Install with suitable settings.
You don't really need to install C++. You need to install a Compiler to run the codes.
- Download the MINGW64 C/C++ tools via MSYS2 website.
- Install MINGW64 by following the steps on their installation guide.
- If using Visual Studio Code, install the C/C++ extension from marketplace.
- Install Mingw-64 toolchain by running
pacman -S --needed base-devel mingw-w64-x86_64-toolchain
in your terminal. - Add the path of MINGW64 bin to your Windows Path in environment settings.
- Check for proper installation using:
gcc --version g++ --version gdb --version If fails, restart from step 2.
- Refer to Visual Studio Documentation or MSYS2 Documentation if any error persists.