-
-
Notifications
You must be signed in to change notification settings - Fork 15
1. Installation
If you're using a Windows machine or an M chip Mac then you can use the pre-built binaries available on release. This guide is for how to run Ghost from source code. Ghost requires Python 3.10+ installed!
Warning
Using Ghost is against Discord's TOS and can result in account termination! To avoid termination, do not use any commands in bigger servers especially ones moderated by Discord staff and do not use any of the abuse commands. I do not take any responsibility for the actions that may be caused by using Ghost. Please use with caution!
Open your terminal or command prompt and run:
git clone https://github.com/ghostselfbot/ghost
cd ghostCreating a virtual environment ensures Ghost runs in its own isolated Python environment.
Windows
py -m venv .venv
.venv\Scripts\activateLinux & macOS
python3 -m venv .venv
source .venv/bin/activateNote
If python, python3 or py isn't recognized, make sure Python 3.10+ is installed and added to your system PATH.
After activating your virtual environment, install the required packages:
pip install -r requirements.txtNow you're ready to launch Ghost:
python3 ghost.pyOr on Windows:
py ghost.py