Skip to content

Instantly share code, notes, and snippets.

@leyiang
Last active June 19, 2022 16:25
Show Gist options
  • Save leyiang/4dc908a5b7621acff18386946ba3de13 to your computer and use it in GitHub Desktop.
Save leyiang/4dc908a5b7621acff18386946ba3de13 to your computer and use it in GitHub Desktop.
`zathura not found` when installing zathura plugin
// Ubuntu
```shell
sudo apt install zathura-dev
```
// If you want to install djvu-extension
```shell
sudo apt install libdjvulibre-dev
```
The thing is, if meson build complains about `zathura` missing, it's actually `zathura-dev` missing.
If meson build complains about `ddjvuapi` and you can't find it with apt, try prefix it with "lib".
If that doesn't work out, you can try search `ubuntu ddjvuapi` on google to see if there's any package names pop up.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment