How to install CraftOS-dev/CraftBot. Official installation instructions. Project installation guide. Framework or library installation. Build installation instructions. How to setup and install from GitHub. Installation steps and setup instructions. Official docs and installation instructions GitHub.
CraftOS-dev/CraftBot Installation Guide
How to install CraftOS-dev/CraftBot. Official project installation instructions and setup guide.
⚡
Automated Install (Recommended)
Quick installation instructions for CraftOS-dev/CraftBot. This is the fastest way to complete project installation and setup.
Install via curl
curl -fsSL https://hexmos.com/ipm-install | bash &&
ipm i CraftOS-dev/CraftBotor
Install via npx
npx @hexmos/ipm i CraftOS-dev/CraftBotPrerequisites
Python
languageVersion: 3.10+
git
version_controlNode.js
runtimeVersion: 18+
conda
package_managerManual Installation Methods
Manual installation instructions. How to install from GitHub source.
Quick Install (Linux/macOS)
git clone https://github.com/zfoong/CraftBot.git
cd CraftBot
python install.py
python run.pyQuick Install (Windows)
git clone https://github.com/zfoong/CraftBot.git
cd CraftBot
python install.py
python run.pyInstall with GUI Support (Linux/macOS/Windows - pip, no conda)
git clone https://github.com/zfoong/CraftBot.git
cd CraftBot
python install.py --gui
python run.py --guiInstall with GUI Support (Linux/macOS/Windows - pip, no conda, CPU-only)
git clone https://github.com/zfoong/CraftBot.git
cd CraftBot
python install.py --gui --cpu-only
python run.py --guiInstall with Conda Environment (Linux/macOS/Windows)
git clone https://github.com/zfoong/CraftBot.git
cd CraftBot
python install.py --conda
conda run -n craftbot python run.pyInstall with GUI Support and Conda (Linux/macOS/Windows)
git clone https://github.com/zfoong/CraftBot.git
cd CraftBot
python install.py --gui --conda
conda run -n craftbot python run.py --guiInstall with GUI Support, Conda, and CPU-only (Linux/macOS/Windows)
git clone https://github.com/zfoong/CraftBot.git
cd CraftBot
python install.py --gui --conda --cpu-only
conda run -n craftbot python run.py --guiRun in TUI Mode (No Node.js required)
git clone https://github.com/zfoong/CraftBot.git
cd CraftBot
python install.py
python run.py --tuiRun in CLI Mode
git clone https://github.com/zfoong/CraftBot.git
cd CraftBot
python install.py
python run.py --cliDocker Installation
git clone https://github.com/zfoong/CraftBot.git
cd CraftBot
docker build -t craftbot .
docker run --rm -it craftbotDocker Installation with GUI/Screen Automation (Host Display)
git clone https://github.com/zfoong/CraftBot.git
cd CraftBot
docker build -t craftbot .
docker run --rm -it -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix -v $(pwd)/data:/app/app/data craftbotDocker Installation with GUI/Screen Automation (Headless Virtual Display)
git clone https://github.com/zfoong/CraftBot.git
cd CraftBot
docker build -t craftbot .
docker run --rm -it --env-file .env craftbot bash -lc "Xvfb :99 -screen 0 1920x1080x24 & export DISPLAY=:99 && exec python -m app.main"Service Installation (Recommended)
git clone https://github.com/zfoong/CraftBot.git
cd CraftBot
python install.py
python service.py install