-
Notifications
You must be signed in to change notification settings - Fork 0
Prerequisites checklist for Windows
- Ubuntu installed
- Docker Desktop is running
- Python 3.6+ installed in Ubuntu
- Unzip installed in Ubuntu
- Git installed in Ubuntu
Press Start menu button and start typing 'Ubuntu'. You should see following program.

You should see Docker Desktop icon in the system tray.
Also go to following Docker Desktop settings and ensure that Ubuntu integration option is on. Go to Docker Desktop -> Settings -> Resources -> WSL Integration

Check if Docker CLI is available in Ubuntu. In Ubuntu terminal execute:
docker --version
You should see version, for example:
Docker version 26.0.0, build 2ae903eIn Ubuntu terminal execute:
docker images
Should display images list (may be empty). No errors should be displayed.
In Ubuntu terminal execute:
python --versionYou should get (version should be later then 3.6):
Python 3.10.12Check pip version by executing:
pip --versionYou should get:
pip 22.0.2 from /usr/lib/python3/dist-packages/pip (python 3.10)In Ubuntu terminal execute:
unzip --versionYou should get installed Unzip version, for example:
UnZip 6.00 of 20 April 2009, by Debian. Original by Info-ZIP.
....In Ubuntu terminal execute:
git --versionYou should get installed Git version, for example:
git version 2.42.0.windows.2