Ubuntu
The steps provided below have been tested on Ubuntu 20.04 and Ubuntu 22.04.
📋 System requirements
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.7.0/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
- Create a new folder on your local disk where you want the module to be installed
- Open a terminal window
- Navigate to that folder with
cd
- 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.7.0/bin/sse-processing-13.7.0.sh && chmod +x sse-processing-13.7.0.sh
- Navigate to the folder with
Files
application - Right-click on the file
sse-processing-13.7.0.sh
- Select
Run as a program
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.