MuhammedKalkan / OpenLens

OpenLens Binary Build Repository
3.98k stars 258 forks source link

update-desktop-database: command not found #175

Closed rgaiacs closed 10 months ago

rgaiacs commented 10 months ago

sudo dpkg -i OpenLens-6.5.2-366.amd64.deb shows

/var/lib/dpkg/info/open-lens.postinst: line 10: update-desktop-database: command not found
redtux commented 10 months ago

update-desktop-database: command not found

This seems to be a simple dependency issue. The utilities for .desktop files are missing on your system.

@rgaiacs, you can manually install the required package like this:

sudo apt install desktop-file-utils
rgaiacs commented 10 months ago

Thanks!