How to install and Run Linux Software in Windows 10 using WSL2?
Last Updated :
07 Nov, 2022
We often may want to run Linux commands, and work with Linux applications but don’t want to install Ubuntu OS, There are several approaches to do this, but the most simple approach is to use Windows Sub System Linux (WSL).
In this article, you’ll learn the following things:
- What is WSL2?
- Prerequisites to set up WSL2.
- How to set up WSL2 in Windows 10?
- Run sample commands in WSL2.
What is WSL2?
Windows Subsystem for Linux is a compatibility layer for running Linux executables natively on Windows 10, 11, and Windows Server 2019, and we will install v2 of WSL i.e WSL2.
Prerequisites to setup WSL2 :
- Windows 10 OS with version 1903 or higher or Windows 11 OS.
- BIOS Level Virtualization support should be enabled, you can check it in Task Manager > Performance Tab.

Ensure BIOS-level virtualization is enabled
How to set up WSL2 in Windows 10?
Step 1: Enable WSL Feature.
To install WSL distros (Linux OS) we need to have the WSL feature enabled.
Open Powershell as Administrator and run the below command.
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart

Open Powershell as Administrator

Enable WSL Feature
Step 2: Enable Virtual Machine Platform.
WSL also depends on a Virtual Machine Platform, so we must enable it before installing the Linux distros (OS).
Open Powershell as Administrator and run the below command.
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart

Enable Virtual Machine Platform
Step 3: Restart Your PC
Restart your PC to make the above changes to become active.
Step 4: Download and install the Linux kernel update package.
Updating the WSL kernel package is recommended before installing Linux distros, you might face issues if this is not up to date.
- You can download the Linux kernel update package from here.
- Double-click the downloaded file to update the kernel.

Update Linux Kernel
Step 5: Set v2 as the WSL default version.
WSL2 is preferred over version 1 for better performance.
wsl --set-default-version 2

Set the WSL Default version as 2
Step 6: Install Linux distribution (Ubuntu).
Now we can install the required Linux distros, here in this example where we are installing Ubuntu 20.04.
- Open Powershell and run the below command.
wsl --install -d Ubuntu-20.04

Install Ubuntu Distribution
- Once installation is completed, open “Ubuntu” from the start menu.

Open Ubuntu Application
- Set username, and password for WSL environment (Ubuntu).

Set username & password
Step 7: Run sample commands.

Run Sample commands in Ubuntu
That’s it, we’ve done WSL setup and executed sample commands in Linux distribution in Windows 10 successfully.
Similar Reads
How to install and Run Linux Software in Windows 10 using WSL2?
We often may want to run Linux commands, and work with Linux applications but don't want to install Ubuntu OS, There are several approaches to do this, but the most simple approach is to use Windows Sub System Linux (WSL). In this article, you'll learn the following things: What is WSL2?Prerequisite
2 min read
How to Install And Run VMware Tool in Linux?
Here, we will see how to install and run the VMware Tools in the Ubuntu Linux system. Virtualization means you can use the guest operating system on your main operating system. Sometimes they help you to do some tasks that are not performable to your current operating system, so you also use a virtu
2 min read
How to Run Linux Software on Windows
Although Windows users could also wish to run Linux software, Linux users frequently desire to run Windows applications on Linux. You can use Linux applications without leaving Windows, whether you're searching for an improved development environment or strong command-line tools. There are several a
5 min read
How to Install and Use NVM on Windows
NVM or Node Version Manager is a command-line tool that allows developers to manage multiple versions of Node.js on a single machine. This function offers the flexibility to work on different projects and versions of Node.js. In this guide, we'll walk you through the steps to install and use NVM on
3 min read
How to Install the Windows Subsystem for Linux on Windows 11?
As a programmer, it is very important to test software on multiple platforms. However, it can be very tedious and inefficient to use multiple virtual machines to achieve the same. Thankfully, this process can be simplified if you are using Windows and wish to run a Linux distribution - with WSL. WSL
2 min read
How to Install Git on Windows Subsystem for Linux?
Git is an open-source distributed version control system developed to handle everything from simple to complex projects with performance and speed. Git software allows a team or group of developers to work together, with all using the same files and folders. It gradually reduces the confusion that t
2 min read
How to Run Windows App on Linux Using Wine?
Running Windows apps on Linux using Wine is a great way to enjoy the functionality of Windows software on a Linux system without needing a virtual machine. Wine (Wine Is Not an Emulator) is a powerful tool that allows Windows applications to run on Linux by translating Windows API calls into POSIX c
4 min read
How to Install Software Applications in Linux?
Linux offers a flexible and powerful environment for running software, but if you're new to the platform, you might wonder how to install software in Linux. Unlike other operating systems, Linux provides multiple ways to install applications, whether through package managers, terminal commands, or g
7 min read
How to Install Scikit-Learn in Windows?
Scikit Learn is an open-source Python library that implements a range of machine learning, preprocessing, cross-validation, and visualization algorithms using a unified interface. In this article, we will look into how to install the Scikit-Learn library in Windows. Pre-requisitesBefore starting, th
2 min read
Python - Install Paramiko on Windows and Linux
The high-level python API starts with the creation of a secure connection object. To have more direct control and pass a socket to transport to start remote access. As a client, it's authenticating using a user credential or private key, and checking the serverâs host key. Paramiko is a Python libra
1 min read