Windows Installation
- Install Python 3.11+ from python.org.
- Open Command Prompt and navigate to your project folder.
- Install Flask:
pip install flask psutil
- Run the server:
python host.py
- Access it in your browser at
http://0.0.0.0:80/
Linux Installation
- Install Python 3 and pip (Debian/Ubuntu):
sudo apt update
sudo apt install python3 python3-pip
- Navigate to your project folder:
cd /path/to/your/project
- Install dependencies:
pip3 install flask psutil
- Run the server (might require sudo for port 80):
sudo python3 host.py
- Open
http://0.0.0.0:80/ in a browser.
Android Installation
- Install Termux from Google Play.
- Update packages and install Python:
pkg update
pkg install python
- Navigate to your project folder in Termux.
- Install dependencies:
pip install flask psutil
- Run the server:
python host.py
- Open your Android browser and go to
http://0.0.0.0:80/