Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update for Ubuntu 24.0.4 as per feedback from WIS2 Training Brasilia channel #794

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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