Skip to main content
Version: 13.2.5

Ubuntu

The steps provided below have been tested on Ubuntu 20.04 and Ubuntu 22.04.

📋 System requirements

info

If you have already installed the requirements for the latest major version 13, you can directly skip to 🧮 Processing module installation.

Oneliner ~500 MB

Execute this single command to automatically install all necessary system dependencies, consuming roughly 500 MB of storage:

bash <(wget -qO- https://raw.githubusercontent.com/sound-scape-explorer/sound-scape-explorer/v13.2.5/bin/install-requirements.sh)

👣 Step-by-Step Installation

System Update & Essential Dependencies

This section ensures your system is updated and equipped with useful dependencies:

sudo apt update && \
sudo apt upgrade -y && \
sudo apt install -y gcc curl ffmpeg hdf5-tools

Python

Install Python and related components:

sudo apt update && \
sudo apt install -y software-properties-common && \
sudo add-apt-repository -y ppa:deadsnakes/ppa && \
sudo apt install -y python3.10 python3.10-distutils python3.10-dev python3-pip python3.10-venv && \
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10

🧮 Processing module

  1. Create a new folder on your local disk where you want the module to be installed
  2. Open a terminal window
  3. Navigate to that folder with cd
  4. Copy, paste then execute the following command to download the installation script
    wget -q https://raw.githubusercontent.com/sound-scape-explorer/sound-scape-explorer/v13.2.5/bin/sse-processing-13.2.5.sh && chmod +x sse-processing-13.2.5.sh
  5. Navigate to the folder with Files application
  6. Right-click on the filesse-processing-13.2.5.sh
  7. Select Run as a program
tip

You will need to double-click on this script everytime you want to use the 🧮 Processing module.

Ubuntu screencast

🗑️ Uninstallation

📋 System requirements

To remove the installed requirements, open a terminal window and execute the following command:

sudo apt remove -y curl ffmpeg hdf5-tools python3.10 python3.10-distutils python3.10-dev python3-pip python3.10-venv && \
sudo apt update && \
sudo apt autoremove -y

🧮 Processing module

Delete the folder you created when installing the module.

⏭️ Next Step

Proceed to the 🏃 Getting started documentation.