Skip to main content
Version: 12.1.0

💻 Application

This section will guide you through the installation process for the App Icon SSE application.

📥 Download ~125 MB

  1. Download sound-scape-explorer-12.1.0.zip ~125 MB
  2. Extract the archive (use Extract here)
  3. Open the folder sound-scape-explorer-12.1.0
  4. 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.

tip

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

  1. Open a new terminal session
  2. Type cd followed by a <space> and the path to the sound-scape-explorer-12.1.0 folder

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 App Icon 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
tip

Use right-click to paste in Windows terminals.

tip

For accelerated processing with a Nvidia 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
tip

For accelerated processing with a Nvidia compatible GPU, include additional dependencies:

pnpm install:processing:cuda

🗑️ Uninstallation

To remove the application and its dependencies, delete the sound-scape-explorer-12.1.0 folder.

⏭️ Next Step

Proceed to the 🧩 Modules documentation.