Skip to main content
Version: 13.6.1

📋 Requirements

The following dependencies are needed to run the application in developer mode:

Choose the procedure depending on your operating system:

Windows

🔧 Installation

Use the Chocolatey command below in an elevated (admin) Powershell terminal:

choco install nodejs-lts pnpm -y

🗑️ Uninstallation

Run the following command in an elevated (admin) Powershell terminal:

choco uninstall nodejs-lts pnpm ffmpeg -y

Ubuntu

🔧 Installation

Open a terminal window and run the commands below.

Install ffmpeg:

sudo apt install -y ffmpeg

Install Node.js with the following command:

sudo apt update && \
sudo apt install -y ca-certificates curl gnupg && \
sudo mkdir -p /etc/apt/keyrings && \
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list && \
sudo apt update && \
sudo apt install -y nodejs

Install pnpm with the following command:

sudo npm -g i pnpm

🗑️ Uninstallation

Open a terminal window and execute the following command:

sudo npm -g uninstall pnpm && \
sudo apt remove -y ffmpeg nodejs && \
sudo rm /etc/apt/sources.list.d/nodesource.list && \
sudo rm /etc/apt/keyrings/nodesource.gpg && \
sudo apt update && \
sudo apt autoremove -y

macOS

🔧 Installation

Execute the following command in a terminal window to install and update your path:

brew install node@20 pnpm ffmpeg && \
echo 'export PATH="/usr/local/opt/node@20/bin:$PATH" >> ~/.profile'

🗑️ Uninstallation

Open a terminal window and execute the following command:

brew uninstall node@20 pnpm ffmpeg