Installing tools for Windows
Check the version of Windows
To Check the Windows 10 version and build Info along with its System Type,
- From the Windows GUI, go to Settings, System, About.
- You should see your System Details in the Window.
If your System Details are
- Windows 10 version 1903 or higher, if Windows 10 version 1903 then with Build 18362 or higher.
- Windows 10 System type: 64-bit.
- Windows 10 Home or Windows 10 Pro
If your System meets all the above requirements, then follow the guide below.
Click to see your steps!
Installing WSL 2
-
Press
Windows key
and Search for Powershell. -
Click on "Run as Administrator". A blue terminal window will open up.
-
Enable WSL with powershell, by running command in powershell
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
-
Enable Virtual machine settings for WSL, by running the below command in powershell
Enable-WindowsOptionalFeature -Online -FeatureName $("VirtualMachinePlatform","Microsoft-Windows-Subsystem-Linux")
This command will ask you to restart your computer. Press
y
and restart your computer. -
Update to WSL version 2.
-
Download the WSL kernel update - https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi
-
Install the update, by double clicking the
wsl_update_x64.msi
file. -
Press
Windows key
and Search for Powershell. -
Click on "Run as Administrator". A blue terminal window will open up.
-
Set default as WSL 2, by running the command in powershell.
wsl --set-default-version 2
-
-
Check if WSL is successfully installed by running command, in powershell
wsl -l
-
After this you can close the powershell terminal window.
Installing Docker
- Download Docker for Desktop, by visiting the link - https://hub.docker.com/editions/community/docker-ce-desktop-windows/ and clicking "Get Docker".
- Install Docker by double clicking on the
Docker Desktop Installer
file. - Installer will start installing the docker.
- After the install completes, Click on close and Log out.
- This will log you out of your Windows and you will have to login again.
- Check if the Docker is installed by running Docker Desktop app.
- That is it done you have successfully installed Docker.
Installing Vscode
- Download VScode from link - https://code.visualstudio.com/download
- Install VScode by double clicking on the
VSCodeUserSetup-x64-1.50.1
file. - Open VScode.
- Select Extensions and Search for Remote Development.
- Install the Remote Development plugin.
- Once Installed you can exit the Vscode.