Installing WSL-ROS2 on your Own (Windows) Machine
Applicable to: Windows 10 or 11 personal (unmanaged) computers
You can install WSL-ROS2 (our purpose-built ROS image for this course) via the University of Sheffield Software Download Service (University login required).
Note
When you download WSL-ROS2 from the Software Download Service you will receive an email with installation instructions. We recommend that you follow the instructions provided on this page instead, as this page will be kept more up-to-date throughout the semester.
Prerequisites¶
- Your computer must be running Windows 10 Build 19044 or higher, or Windows 11.
- Update the GPU drivers for your machine.
- Install or update WSL:
- If you don't already have WSL installed on your machine then follow these instructions to install it.
- If you do already have WSL installed on your machine, then follow these instructions to update it.
- Install the Windows Terminal.
- Install Visual Studio Code and the WSL VS Code extension.
Installing¶
- Go to the IT Services Software Downloads page (you'll need to log in with your university MUSE credentials).
-
Scroll down to the bottom, where you should see WSL-ROS listed.
Click on the blue "Request WSL-ROS" button and then wait to receive an email to your university email address.
-
The email will contain a link to two different download locations.
Warning
Make sure you click on the link for WSL-ROS2, NOT WSL-ROS (this is based on an older ROS version).
Click the correct link to download WSL-ROS2 to your machine as a
.zip
file (~2 GB). -
On your computer, create a new folder in the root of your
C:\
drive calledWSL-ROS2
. - Extract the content of the downloaded
.zip
file into to theC:\WSL-ROS2\
folder. -
Launch PowerShell and enter the follow command to install WSL-ROS2 as a WSL distro on your machine:
-
This may take a couple of minutes. Once it's done, you can verify that it was successful with the following command:
Where
WSL-ROS2
should be listed. -
Next (optional, but recommended), open up the Windows Terminal App, then:
- Go to Settings (Ctrl+,)
- In
Startup
>Default profile
select WSL-ROS2 from the drop-down list.
Alternatively, you could always use our own Windows Terminal Settings file (but note that this will overwrite any of your own custom Windows Terminal App settings, if you have any):
Copy-Item -Path C:\WSL-ROS2\settings.json -Destination ` $env:localappdata\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState
Either way, this will ensure that each time you open the Windows Terminal App or you press the New Tab () button a WSL-ROS2 Terminal Instance will be launched by default.
-
You should now be able to launch the WSL-ROS2 environment by launching the Windows Terminal App:
Initial Setup¶
With your WSL-ROS2 terminal instance, you'll need to run some initial commands to get things set up.
-
First, update the distro:
-
Next, run the following command to attempt to use native Graphical User Interface (GUI) support (which should work if you followed all the prerequisites above):
-
Re-source your
.bashrc
file for this change to take effect: -
Run the following ROS command to see if you can launch the Gazebo GUI, which is crucial for this course:
This should hopefully present you with something like this:
If this doesn't work, then you may need to try using a dedicated X Server (VcXsrv) instead...
Using a Dedicated X Server¶
Only try this if you were unable to launch the robot simulation in the previous section.
If you are unable to run GUI apps (having completed the steps in the section above), then you may need to try using a dedicated X Server instead. In the prerequisites, you should have already installed VcXsrv.
- First, install the VcXsrv Windows X Server.
-
Download this config file for VcXsrv and save it to your desktop as
wsl_ros_config.xlaunch
. -
Double click this to launch VcXsrv with the appropriate settings. An icon should then appear in your notification tray to indicate that the X Server is running:
-
In a WSL-ROS2 Terminal Instance, run the following:
-
Re-source your
.bashrc
file for this change to take effect: -
Try running the empty world Gazebo simulation again:
Important
If this option works for you, you'll need to make sure you have the X Server running (by clicking the
wsl_ros_config.xlaunch
shortcut) every time you work with WSL-ROS2.
Hardware Acceleration¶
Note
Only a (potential) option for those who aren't using VcXsrv, and even then, it's not guaranteed that it'll work for everyone!
-
If your graphics card supports it, it may be possible to also use hardware acceleration for GUI apps. If you want to try this, then run the following command to enable this:
Then - once again - re-source your
.bashrc
file for this change to take effect: