Installation
Processing CLI tool
- Windows 11
- Ubuntu 24
- macOS
- Install Python 3.11 with Chocolatey
- Open PowerShell with administrator privileges
- Run the Chocolatey installation command
- Wait for completion
- Install Python using the following command
choco install python --version=3.11.9 -y
- Download installation script
- Right click and save as on this file
- Double click on the script to install
- Install Python 3.11
sudo add-apt-repository -y ppa:deadsnakes/ppa && \
sudo apt install -y python3.11 python3.11-distutils python3.11-dev python3-pip python3.11-venv && \
python3.11 --version
- Download installation script
wget -q https://raw.githubusercontent.com/sound-scape-explorer/sound-scape-explorer/v14.0.0/bin/sse-processing-14.0.0.sh && \
chmod +x sse-processing-14.0.0.sh
- Run installation script
./sse-processing-14.0.0.sh
# or right-click > Run as a Program
TODO
Desktop application
- Windows 11
- Ubuntu 24
- macOS
Download and run sound-scape-explorer-14.0.0.exe
Run the following command in your terminal.
You will then have access to sound-scape-explorer application.
sudo -v && \
wget https://github.com/sound-scape-explorer/sound-scape-explorer/releases/download/v14.0.0/sound-scape-explorer-14.0.0.deb && \
sudo apt install ./sound-scape-explorer-14.0.0.deb && \
rm -f sound-scape-explorer-14.0.0.deb && \
sudo -k
TODO