How to install mongosh after installing MongoDB on Windows?

Viewed 111

The instruction is given but I am not able to understand what is the desired location in my file system here.

Can anyone clear my doubt?

Instruction of installation of mongosh.

1 Answers

On my Windows system, I created a directory C:\bin to hold misc executable programs. That directory is added to the PATH environment variable.

  1. mkdir c:\bin
  2. set PATH=c:\bin;%PATH%
  3. Download the zip file, extract mongosh.exe to C:\bin.
Related