DeepTutor v1.5 is fully open-source at: github.com/HKUDS/DeepTutor
Link
GitHub - HKUDS/DeepTutor: DeepTutor: Lifelong Personalized Tutoring. https://deeptutor.info/.
DeepTutor: Lifelong Personalized Tutoring. https://deeptutor.info/. - HKUDS/DeepTutor
github.com
Linked Article Content
Personal tutoring,
reimagined.
Agent-native Learning Companion that grows with you.
Fully Open-Sourced.
Eight surfaces, *one* running context.
Home, Partners, My Agents, Co-Writer, Book, Learning Space, Memory, and Knowledge Center share the same agent-native runtime. Switching surfaces no longer means losing your place.
Home
主页The default agent loop — tools, retrieval, attachments, and memory in one session.
Partners
伙伴Persistent companions with their own soul, library, and IM channels.
My Agents
我的智能体Connect local Claude Code / Codex agents and import past chats to consult live.
Co-Writer
协同写作A selection-aware Markdown workspace for KB- or web-grounded AI editing.
Book
交互式书本Compile knowledge bases and notebooks into interactive living books.
Learning Space
学习空间A reusable hub for skills, personas, notebooks, and questions.
Memory
记忆Inspectable, three-layer memory that keeps personalization auditable.
VIII
Knowledge Center
知识中心Versioned, multi-engine retrieval libraries for RAG.
Up and running in *minutes*.
Four ways to install — pick the one that fits. Every path lands at the same configured workspace.
Smoothest path. Full local Web app + CLI, no clone required.
1. Create a workspace directory
mkdir -p my-deeptutor && cd my-deeptutor
2. Install, configure, launch
pip install -U deeptutor
deeptutor init
deeptutor start
Full guide
One container for the full Web app, from GitHub Container Registry.
docker run --rm --name deeptutor \
p 127.0.0.1:3782:3782 \
v deeptutor-data:/app/data \
ghcr.io/hkuds/deeptutor:latest
Hot-reload the frontend, hack on the backend, match CI exactly.
git clone https://github.com/HKUDS/DeepTutor.git
cd DeepTutor
python3 -m venv .venv && source .venv/bin/activate
pip install -e .
( cd web && npm ci --legacy-peer-deps )
deeptutor init && deeptutor start
Lightweight install for servers, agent harnesses, Claude Code / Codex setups; add Partners extras when needed.
python3 -m venv .venv-cli && source .venv-cli/bin/activate
pip install -e ./packaging/deeptutor-cli
deeptutor init --cli
deeptutor chat