Skip to content

Commit

Permalink
update for Ubuntu 24.0.4 as per feedback from Peter Argueta (#794)
Browse files Browse the repository at this point in the history
  • Loading branch information
maaikelimper authored Oct 18, 2024
1 parent 25faa39 commit 1719569
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/source/user/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Getting started
===============

wis2box can be run on any Linux instance (bare metal or cloud hosted VM) with Python, Docker and Docker Compose installed.
The recommended OS is Ubuntu 22.04 LTS.
The recommended OS is Ubuntu (20.04 LTS, 22.04 LTS or 24.04 LTS).

.. note::

Expand Down Expand Up @@ -85,6 +85,16 @@ The following commands be used to setup the required software on Ubuntu (20.04 L
sudo pip3 install pyopenssl --upgrade
sudo pip3 install requests==2.26.0 urllib3==1.26.0
For Ubuntu 24.04 LTS, you will need to use a virtual environment to install the required Python packages:

.. code-block:: bash
python3 -m venv wis2box
source wis2box/bin/activate
pip3 install pip --upgrade
pip3 install pyopenssl --upgrade
pip3 install requests==2.26.0 urllib3==1.26.0
The following commands can be used to inspect the available versions of Python, Docker and Docker Compose on your system:

.. code-block:: bash
Expand Down

0 comments on commit 1719569

Please sign in to comment.