Skip to content

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

  1. Your computer must be running Windows 10 Build 19044 or higher, or Windows 11.
  2. Update the GPU drivers for your machine.
  3. Install or update WSL:
    1. If you don't already have WSL installed on your machine then follow these instructions to install it.
    2. If you do already have WSL installed on your machine, then follow these instructions to update it.
  4. Install the Windows Terminal.
  5. Install Visual Studio Code and the WSL VS Code extension.

Installing

  1. Go to the IT Services Software Downloads page (you'll need to log in with your university MUSE credentials).
  2. 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.

  3. 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).

  4. On your computer, create a new folder in the root of your C:\ drive called WSL-ROS2.

  5. Extract the content of the downloaded .zip file into to the C:\WSL-ROS2\ folder.
  6. Launch PowerShell and enter the follow command to install WSL-ROS2 as a WSL distro on your machine:

    wsl --import WSL-ROS2 $env:localappdata\WSL-ROS2 `
    C:\WSL-ROS2\wsl-ros2-v2425.01.tar --version 2
    
  7. This may take a couple of minutes. Once it's done, you can verify that it was successful with the following command:

    wsl -l -v
    

    Where WSL-ROS2 should be listed.

  8. Next (optional, but recommended), open up the Windows Terminal App, then:

    1. Go to Settings (Ctrl+,)
    2. 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.

  9. 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.

  1. First, update the distro:

    sudo apt update && sudo apt upgrade -y
    
  2. 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):

    echo "export XSERVER=false" > $HOME/.tuos/xserver.sh
    
  3. Re-source your .bashrc file for this change to take effect:

    source ~/.bashrc
    
  4. Run the following ROS command to see if you can launch the Gazebo GUI, which is crucial for this course:

    ros2 launch turtlebot3_gazebo empty_world.launch.py
    

    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.

  1. First, install the VcXsrv Windows X Server.
  2. Download this config file for VcXsrv and save it to your desktop as wsl_ros_config.xlaunch.

  3. 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:

  4. In a WSL-ROS2 Terminal Instance, run the following:

    echo "export XSERVER=true" > $HOME/.tuos/xserver.sh
    
  5. Re-source your .bashrc file for this change to take effect:

    source ~/.bashrc
    
  6. Try running the empty world Gazebo simulation again:

    ros2 launch turtlebot3_gazebo empty_world.launch.py
    

    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!

  1. 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:

    echo "export LIBGL_ALWAYS_SOFTWARE=false" >> $HOME/.bashrc
    

    Then - once again - re-source your .bashrc file for this change to take effect:

    source ~/.bashrc
    

See Also