12 lines
250 B
Markdown
Raw Normal View History

# Download latest nightly and install it
2025-04-12 01:36:03 +03:00
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
```