Skip to content

Installation of the bot

Jetsurf edited this page Nov 5, 2021 · 14 revisions

Requirements

Python 3.8 or higher is required. Due to this requirement, it is highly recommended that your distro of choice supports this out of the box.

Python Requirements

Pull down the bot repo from github

git clone https://github.com/Jetsurf/jet-bot.git
cd jet-bot

Use pip3 to setup the required python libraries

pip3 install -r requirements.txt

At the time of writing, the pip3 provided installation of pycord is not supported, do a git install with the following

cd ..
git clone https://github.com/Pycord-Development/pycord.git
cd pycord
pip3 install .[voice]
cd ../jet-bot

Mysql Setup

The bot will automatically create the proper tables once it runs for the first time.

Clone this wiki locally