Last active
June 19, 2022 16:25
-
-
Save leyiang/4dc908a5b7621acff18386946ba3de13 to your computer and use it in GitHub Desktop.
`zathura not found` when installing zathura plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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