💻 Application
This section will guide you through the installation process for the CSE application.
📥 Download ~125 MB
- Download coral-sound-explorer-1.1.0.zip ~125 MB
- Extract the archive (use Extract here)
- Open the folder
coral-sound-explorer-1.1.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
cd
followed by a<space>
and the path to thecoral-sound-explorer-1.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 CSE 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 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
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
coral-sound-explorer-1.1.0
folder.
⏭️ Next Step
Proceed to the 🧩 Modules documentation.