💻 Application
This section will guide you through the installation process for the
SSE application.
📥 Download ~125 MB
- Download sound-scape-explorer-12.0.0.zip ~125 MB
- Extract the archive (use Extract here)
- Open the folder
sound-scape-explorer-12.0.0 - Proceed to the next steps
🔮 Virtual Environment
A virtual environment is established to manage Python dependencies.
It needs creation only once but can be activated multiple times.
You will need to repeat this step each time you open a new terminal session.
venv on Windows
Double-click on start.bat and wait for venv creation and activation.
Windows screencast
venv on Ubuntu / macOS
- Open a new terminal session
- Type
cdfollowed by a<space>and the path to thesound-scape-explorer-12.0.0folder
Create venv
Execute the following command to create a virtual environment:
python3.10 -m venv venv
Activate venv
Run this command to activate the virtual environment:
. venv/bin/activate
Ubuntu screencast
🧩 Modules ~14 GB
Modules constitute the components of
SSE and occupy
approximately 14 GB of disk space.
Modules on Windows
Install all modules sequentially using the following command:
pnpm i; pnpm install:front; pnpm install:processing:windows
Use right-click to paste in Windows terminals.
For accelerated processing with a compatible GPU, include additional dependencies:
pnpm install:processing:cuda:windows
Modules on Ubuntu / macOS
Install all modules at once with this command:
pnpm i && \
pnpm install:front && \
pnpm install:processing
For accelerated processing with a compatible GPU, include additional dependencies:
pnpm install:processing:cuda
🗑️ Uninstallation
To remove the application and its dependencies, delete the
sound-scape-explorer-12.0.0 folder.
⏭️ Next Step
Proceed to the 🧩 Modules documentation.