Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 2.21 KB

1.II.setup_win.md

File metadata and controls

55 lines (35 loc) · 2.21 KB

Project Setup in Windows

The basic requirements for this project are:

  1. Git
  2. A Text Editor
  3. Python
  4. MongoDB

Git installation

  1. Go to the git downloads page git download page

  2. Download the installer for windows and run it.

  3. Keep everything at default and finish the installation.

Text Editor

A text editor is needed to write the actual code. There are many good text editors and IDEs like Notepad++, Visual Studio Code, PyCharm, Atom, Sublime Text Editor. For this project, we will use Visual Studio Code.

  1. Go to the Visual Studio Code download page. vscode download page

  2. Select the correct version according to your Operating System and download the installer.

  3. Run the installer and install visual studio code with the default options.

  4. In Visual Studio Code, install the python extension from the extension marketplace. extension

Python

  1. Go to the python downloads page.
  2. Download the latest version of python available in the site and run it.
  3. Check the 'ADD PYTHON 3.10 TO PATH' option. python path
  4. Click on 'Install Now'

MongoDB

  1. Go to the mongodb website and under the products tab go to the community server section. website navigation

  2. Select the latest version, and your platform i.e. Windows and the file type(.msi) and download it. download format

  3. Run the installer. Keep the default settings and complete the installation.

  4. Now go to System properties and select 'Environment variables'. Select path and Click on 'Edit'

  5. Click on 'New' and add the path to the 'bin' folder of your mongodb installation. If default settings are kept, the path should be 'C:\Program Files\MongoDB\Server\5.0\bin'. path

  6. Save it and mongodb installation is complete.