trilium/docs/Developer Guide/Developer Guide/Installation/Download latest nightly and in.md
2025-04-12 01:36:03 +03:00

12 lines
No EOL
251 B
Markdown

# Download latest nightly and install it
On Ubuntu:
```
#!/usr/bin/env bash
name=TriliumNextNotes-linux-x64-nightly.deb
rm -f $name*
wget https://github.com/TriliumNext/Notes/releases/download/nightly/$name
sudo apt-get install ./$name
rm $name
```