D++ (DPP)  10.0.30
C++ Discord API Bot Library
Installing from a .rpm file (RedHat, CentOS and Derivatives)

To install D++ on a system from .rpm using yum (as root):

yum install wget
wget -O dpp.rpm https://dl.dpp.dev/latest/linux-x64/rpm
yum localinstall dpp.rpm

This will do the following three things:

  • Install wget
  • Use wget to download the latest release of D++ to dpp.rpm
  • Install dpp.rpm to /usr

You will now be able to use D++ by including its library on the command line:

g++ mybot.cpp -o mybot -ldpp

Note
Compiling your bot with a raw `g++` command is not advised in any real project, and the example above should be used only as a test. From here, you should learn to create a bot in D++ by moving on to Building a Discord Bot Using CMake (UNIX) or if you have not yet created a token for your bot, Creating a Bot Token - If you are having trouble setting up CMake, you can try our template cmake bot project.