Dependencies

Our bots requires different dependencies for different operating systems. Please make sure you have all dependencies installed for your OS or our bots may not start or function properly.

These are dependencies our bots require regardless of the operating system:

  • Node.js 16.x.x LTS

  • Hosting, (VPS, Dedicated Server, Bot hosting) We recommend at least 512mb of RAM and at least 1 core

  • A text editor, We recommend Visual Studio Code

  • A stable Internet Connection

  • All NPM packages listed in the package.json, These will automatically install when running the npm install command

We strongly recommend against hosting our bots on heroku, repl.it, or glitch, We will not provide support to people using those.

Windows Dependencies

Python v3.7 and above and Visual Studio Desktop Development C++

You can install these dependencies by running the following command in an administrative command prompt:

npm install --global --production --vs2018 --add-python-to-path windows-build-tools

Install Node.js LTS here: https://nodejs.org/en/

How to install FFmpeg: https://www.geeksforgeeks.org/how-to-install-ffmpeg-on-windows/

Linux Dependencies

The following linux packages are required: autoconf, automake, g++, libtool, and build-essential You can install them by running the following command:

Debian/Ubuntu

apt-get install autoconf automake g++ libtool build-essential
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt install -y nodejs

FFmpeg (Plex Bot Only)

sudo apt install ffmpeg

CentOS

sudo yum groupinstall "Development Tools"
curl -fsSL https://rpm.nodesource.com/setup_16.x | sudo bash -
sudo yum install -y nodejs

FFmpeg (Plex Bot Only)

sudo yum install epel-release
sudo yum localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm
sudo yum install ffmpeg ffmpeg-devel

Last updated