Please contact me on Discord if you run into any issues during installation.
Download and run the bash script provided in this repository to install files.
sudo curl -Lo auto-install.sh https://raw.githubusercontent.com/Jexactyl/plugin-manager-addon/main/auto-install.sh
sudo chmod u+x auto-install.sh
sudo ./auto-install.sh
Download the archive from GitHub and extract it into your /var/www/pterodactyl
install.
cd /tmp
git clone https://github.com/jexactyl/plugin-manager-addon
cd plugin-manager-addon
cp -R * /var/www/pterodactyl/
Then, you'll need to install NodeJS and Yarn in order to compile the Panel's frontend.
# Ubuntu/Debian
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
apt install -y nodejs
# CentOS
curl -sL https://rpm.nodesource.com/setup_16.x | sudo -E bash -
sudo yum install -y nodejs yarn # CentOS 7
sudo dnf install -y nodejs yarn # CentOS 8
npm i -g yarn # Install Yarn
cd /var/www/pterodactyl
yarn # Installs panel build dependencies
Finally, build the Panel in production mode to add the UI.
cd /var/www/pterodactyl
yarn build:production # Build panel