43

I installed Gitkraken as I have a few projects I want to work on with my KDE Neon box. now I was pretty sure I installed everything but I ran gitkraken in a terminal and I got this

Node started time: 1500754704472
libgnome-keyring.so.0: cannot open shared object file: No such file or 
directory
Error: libgnome-keyring.so.0: cannot open shared object file: No such 
file or directory

(I'll post the rest if deemed necessary)

The problem is I have keyring installed

lotus@Lotus-HackBook:~$ gnome-keyring
usage: gnome-keyring command [options]
commands: certificate-exception
      import
      version

I have no idea whats going on.

4 Answers4

69

On Ubuntu / Debian and similar:

I installed libgnome-keyring-common and libgnome-keyring-dev on ubuntu 16.04 which solved it for me:

sudo apt install libgnome-keyring-common libgnome-keyring-dev

This is the Ubuntu version, should work on Debian etc. too. So you don't have to find out the package names.

Thanks to libroman2.

fixer1234
  • 28,064
mit
  • 1,594
5

On Ubuntu 18.04.01 it's this one:

sudo apt install libgnome-keyring0

Notice the '0' at the end.

2

I had the same error. Even though you have gnome-keyring installed, you specifically need libgnome-keyring. I would try to find a package to install that starts with libgnome-keyring. Good luck!