logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt
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/CraftBot
or

Install via npx

npx @hexmos/ipm i CraftOS-dev/CraftBot

Prerequisites

Python

language

Version: 3.10+

git

version_control

Node.js

runtime

Version: 18+

conda

package_manager

Manual 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.py

Quick Install (Windows)

git clone https://github.com/zfoong/CraftBot.git

cd CraftBot

python install.py

python run.py

Install 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 --gui

Install 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 --gui

Install 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.py

Install 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 --gui

Install 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 --gui

Run in TUI Mode (No Node.js required)

git clone https://github.com/zfoong/CraftBot.git

cd CraftBot

python install.py

python run.py --tui

Run in CLI Mode

git clone https://github.com/zfoong/CraftBot.git

cd CraftBot

python install.py

python run.py --cli

Docker Installation

git clone https://github.com/zfoong/CraftBot.git

cd CraftBot

docker build -t craftbot .

docker run --rm -it craftbot

Docker 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 craftbot

Docker 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