Installation Guide

How to set up WolfLoom on different operating systems

Download icon
Download ZIP

Windows Installation

  1. Install Python 3.11+ from python.org.
  2. Open Command Prompt and navigate to your project folder.
  3. Install Flask:
    pip install flask psutil
  4. Run the server:
    python host.py
  5. Access it in your browser at http://0.0.0.0:80/

Linux Installation

  1. Install Python 3 and pip (Debian/Ubuntu):
    sudo apt update
    sudo apt install python3 python3-pip
  2. Navigate to your project folder:
    cd /path/to/your/project
  3. Install dependencies:
    pip3 install flask psutil
  4. Run the server (might require sudo for port 80):
    sudo python3 host.py
  5. Open http://0.0.0.0:80/ in a browser.

Android Installation

  1. Install Termux from Google Play.
  2. Update packages and install Python:
    pkg update
    pkg install python
  3. Navigate to your project folder in Termux.
  4. Install dependencies:
    pip install flask psutil
  5. Run the server:
    python host.py
  6. Open your Android browser and go to http://0.0.0.0:80/