← eAgent Open Web

Linux / remote server install

Install the portable eAgent Linux package on your own machine or server, then start the Web UI with nohup (same idea as the lab LAN port, but with your host and port).

Download Linux package (.tar.gz)

1) Download

mkdir -p ~/Downloads && cd ~/Downloads
curl -fsSL -O "https://eagent.huanglabxmu.com/releases/eAgent-linux-x86_64-20260811.tar.gz"

2) Install to a directory you choose

# Example: install under ~/eAgent
mkdir -p ~/eAgent && cd ~/eAgent
tar -xzf ~/Downloads/eAgent-linux-x86_64-20260811.tar.gz
cd eAgent-linux-x86_64-20260811   # or the extracted folder name
./install.sh --port 3050 --host 127.0.0.1
# Edit app/.env and set your LLM API key (DeepSeek / OpenAI / …)

Replace 3050 / 127.0.0.1 with your own free port and public/LAN IP if others will open the UI remotely.

3) Start (nohup) — like opening a LAN web port

This mirrors how the lab instance is kept running in the background (e.g. 172.19.247.30:3050), but you use your server and port.

cd ~/eAgent/eAgent-linux-x86_64-20260811
./bin/eagent start
# UI: http://<YOUR_HOST>:<YOUR_PORT>/
# Example local: http://127.0.0.1:3050/
# Example LAN:  http://192.168.1.10:3050/

4) Status / stop

./bin/eagent status
./bin/eagent url
./bin/eagent stop

Requirements

  1. Linux x86_64
  2. bash, python3, curl, fuser (package psmisc)
  3. Outbound network for your LLM provider APIs
  4. Independent of the lab cluster after install — changing lab sources will not break your copy

Package: eAgent-linux-x86_64-20260811.tar.gz · Product family v0.3.0 · Support: orangec930@gmail.com