经过安装多个不同版本Trilium Notes对比测试,把最优版本推荐给大家,该版本在美化和运行速度上个人感觉是最优的。
Trilium Notes
[](https://github.com/TriliumNext/Trilium/blob/main/docs/README-ZH_CN.md#trilium-notes)






英文 | 简体中文 | 正体中文 | 俄文 | 日文 | 意大利文 | 西班牙文
Trilium Notes 是一款免费且开源、跨平台的阶层式笔记应用程序,专注于建立大型个人知识库。
想快速了解,请查看屏幕截图:

🎁 功能
[](https://github.com/TriliumNext/Trilium/blob/main/docs/README-ZH_CN.md#-功能)
✨ 想要更多 TriliumNext 的主题、脚本、外挂与资源,亦可参考以下第三方资源/社群:
⚠️ 为什么是 TriliumNext?
[](https://github.com/TriliumNext/Trilium/blob/main/docs/README-ZH_CN.md#️-为什么是-triliumnext)
原本的 Trilium 项目目前处于维护模式。
从 Trilium 迁移?
[](https://github.com/TriliumNext/Trilium/blob/main/docs/README-ZH_CN.md#从-trilium-迁移)
从既有的 zadam/Trilium 例项迁移到 TriliumNext/Notes 不需要特别的迁移步骤。只要照一般方式安装 TriliumNext/Notes,它就会直接使用你现有的数据库。
版本至多至 v0.90.4 与 zadam/trilium 最新版本 v0.63.7 兼容。之后的 TriliumNext 版本已提升同步版本号(与上述不再兼容)。
📖 文件
[](https://github.com/TriliumNext/Trilium/blob/main/docs/README-ZH_CN.md#-文件)
我们目前正将文件搬移至应用程序内(在 Trilium 中按 F1
)。在完成前,文件中可能会有缺漏。如果你想在 GitHub 上查看,也可以直接查看使用说明。
以下提供一些快速连结,方便你导览文件:
在我们完成重新整理文件架构之前,你也可以查看旧版文件。
💬 与我们交流
[](https://github.com/TriliumNext/Trilium/blob/main/docs/README-ZH_CN.md#-与我们交流)
欢迎加入官方社群。我们很乐意听到你对功能、建议或问题的想法!
🏗 安装
[](https://github.com/TriliumNext/Trilium/blob/main/docs/README-ZH_CN.md#-安装)
Windows / macOS
[](https://github.com/TriliumNext/Trilium/blob/main/docs/README-ZH_CN.md#windows--macos)
从最新释出页面下载你平台的二进制文件,解压缩后执行 trilium
可执行文件。
Linux
[](https://github.com/TriliumNext/Trilium/blob/main/docs/README-ZH_CN.md#linux)
如果你的发行版如下表所列,请使用该发行版的套件。

你也可以从最新释出页面下载对应平台的二进制文件,解压缩后执行 trilium
可执行文件。
TriliumNext 也提供 Flatpak,惟尚未发布到 FlatHub。
查看器(任何操作系统)
[](https://github.com/TriliumNext/Trilium/blob/main/docs/README-ZH_CN.md#查看器任何操作系统)
若你有(如下所述的)服务器安装,便可直接存取网页界面(其与桌面应用几乎相同)。
目前仅支持(并实测)最新版的 Chrome 与 Firefox。
移动装置
[](https://github.com/TriliumNext/Trilium/blob/main/docs/README-ZH_CN.md#移动装置)
若要在行动装置上使用 TriliumNext,你可以透过移动查看器存取服务器安装的移动版接口(见下)。
如果你偏好原生 Android 应用,可使用 TriliumDroid。回报问题或缺少的功能,请至其储存库。
更多关于移动应用支持的信息,请见议题:https://github.com/TriliumNext/Notes/issues/72。
服务器
[](https://github.com/TriliumNext/Trilium/blob/main/docs/README-ZH_CN.md#服务器)
若要在你自己的服务器上安装 TriliumNext(包括从 Docker Hub 使用 Docker 部署),请遵循服务器安装文件。
docker-compose.yml
services:
trilium:
# Optionally, replace `latest` with a version tag like `v0.90.3`
# Using `latest` may cause unintended updates to the container
image: triliumnext/trilium:latest
# Restart the container unless it was stopped by the user
restart: unless-stopped
environment:
- TRILIUM_DATA_DIR=/home/node/trilium-data
ports:
# By default, Trilium will be available at http://localhost:8080
# It will also be accessible at http://<host-ip>:8080
# You might want to limit this with something like Docker Networks, reverse proxies, or firewall rules,
# however be aware that using UFW is known to not work with default Docker installations, see:
# https://docs.docker.com/engine/network/packet-filtering-firewalls/#docker-and-ufw
- '8787:8080'
volumes:
# Unless TRILIUM_DATA_DIR is set, the data will be stored in the "trilium-data" directory in the home directory.
# This can also be changed with by replacing the line below with `- /path/of/your/choice:/home/node/trilium-data
- ${TRILIUM_DATA_DIR:-~/trilium-data}:/home/node/trilium-data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro