1
Fork 0
mirror of https://gitlab.com/Kwoth/nadekobot.git synced 2024-10-02 20:13:13 +00:00
nadekobot/docs/guides/windows-guide.md
2024-05-11 02:05:56 +00:00

7.5 KiB

Setting Up NadekoBot on Windows With the Updater

Table of Contents
Prerequisites
Setup
Starting the Bot
Updating Nadeko
Manually Installing the Prerequisites from the Updater

Note: If you want to make changes to Nadeko's source code, please follow the From Source guide instead.

Prerequisites

Optional

Setup

  • Download and run the NadekoBot v3 Updater.
  • Click on the + at the top left to create a new bot. NadekoBot Updater
  • Give your bot a name and then click Go to setup at the lower right. Create a new bot
  • Click on DOWNLOAD at the lower right Bot Setup
  • Note: Redis is optional. install Redis manually here: Redis Download and run the .msi file.
  • If you will use the music module, click on Install next to FFMPEG and Youtube-DLP.
  • If any dependencies fail to install, you can temporarily disable your Windows Defender/AV until you install them. If you don't want to, then read the last section of this guide.
  • When installation is finished, click on CREDS to the left of RUN at the lower right.
  • Follow the guide on how to Set up the creds.yml file.

Starting the bot

  • Either click on RUN button in the updater or run the bot via its desktop shortcut.

If you get a "No owner channels created..." message. Please follow the creds guide again HERE.

Updating Nadeko

  • Make sure Nadeko is closed and not running (Run .die in a connected server to ensure it's not running).
  • Open NadekoBot Updater
  • Click on your bot at the upper left (looks like a spy).
  • Click on Check for updates.
  • If updates are available, you will be able to click on the Update button.
  • Launch the bot
  • You've updated and are running again, easy as that!

Manual Prerequisite Installation

You can still install them manually:

  • Redis (OPTIONAL) - Download and run the .msi file
  • ffmpeg-32bit | ffmpeg-64bit - Download the appropriate version for your system (32 bit if you're running a 32 bit OS, or 64 if you're running a 64bit OS). Unzip it, and move ffmpeg.exe to a path that's in your PATH environment variable. If you don't know what that is, then just move the ffmpeg.exe file to NadekoBot/system
  • youtube-dlp - Click to download the yt-dlp.exe file then put yt-dlp.exe in a path that's in your PATH environment variable. If you don't know what that is, then just move the yt-dlp.exe file to NadekoBot/system

⚠ IF YOU ARE FOLLOWING THE GUIDE ABOVE, IGNORE THIS SECTION ⚠

Windows From Source

Prerequisites

Install these before proceeding or your bot will not work!

  • .net 8 - needed to compile and run the bot
  • git - needed to clone the repository (you can also download the zip manually and extract it, but this guide assumes you're using git)
  • Redis (OPTIONAL)- to cache things needed by some features and persist through restarts
Installation Instructions

Open PowerShell (press windows button on your keyboard and type powershell, it should show up; alternatively, right click the start menu and select Windows PowerShell), and navigate to the location where you want to install the bot (for example cd ~/Desktop/)

  1. git clone https://gitlab.com/kwoth/nadekobot -b v5 --depth 1
  2. cd nadekobot
  3. dotnet publish -c Release -o output/ src/NadekoBot/
  4. cd output
  5. cp creds_example.yml creds.yml
  6. Open creds.yml with your favorite text editor (Please don't use Notepad or WordPad. You can use Notepad++, VSCode, Atom, Sublime, or something similar)
  7. Enter your bot's token
  8. Run the bot dotnet NadekoBot.dll
  9. 🎉
Update Instructions

Open PowerShell as described above and run the following commands:

  1. Stop the bot
  • ⚠️ Make sure you don't have your database, credentials or any other nadekobot folder open in some application, this might prevent some of the steps from executing succesfully
  1. Navigate to your bot's folder, example:
    • cd ~/Desktop/nadekobot
  2. Pull the new version, and make sure you're on the v5 branch
    • ⚠️ the first 3 lines can be omitted if you're already on v5. If you're updating from v4, you must run them
      • git remote set-branches origin '*'
      • git fetch -v --depth=1
      • git checkout v5
    • git pull
    • ⚠️ If this fails, you may want to stash or remove your code changes if you don't know how to resolve merge conflicts
  3. Backup old output in case your data is overwritten
    • cp -r -fo output/ output-old
  4. Build the bot again
    • dotnet publish -c Release -o output/ src/NadekoBot/
  5. Remove old strings and aliases to avoid overwriting the updated versions of those files
    • ⚠ If you've modified said files, back them up instead
    • rm output-old/data/aliases.yml
    • rm -r output-old/data/strings
  6. Copy old data
    • cp -Recurse .\output-old\data\ .\output\ -Force
  7. Copy creds.yml
    • cp output-old/creds.yml output/
  8. Run the bot
    • cd output
    • dotnet NadekoBot.dll

🎉 Enjoy

Music prerequisites

In order to use music commands, you need ffmpeg and yt-dlp installed.

  • ffmpeg-32bit | ffmpeg-64bit - Download the appropriate version for your system (32 bit if you're running a 32 bit OS, or 64 if you're running a 64bit OS). Unzip it, and move ffmpeg.exe to a path that's in your PATH environment variable. If you don't know what that is, just move the ffmpeg.exe file to NadekoBot/output.
  • youtube-dlp - Click to download the yt-dlp.exe file, then move yt-dlp.exe to a path that's in your PATH environment variable. If you don't know what that is, just move the yt-dlp.exe file to NadekoBot/system.