mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 04:17:37 +08:00
12 lines
No EOL
251 B
Markdown
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
|
|
``` |