Can't install GitKraken

Solution 1:

In terminal...

  • sudo apt-get update
  • sudo apt-get install curl libcurl3

Now your app should work.

Solution 2:

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 

Solution 3:

I used the following command:

$ sudo apt-get install curl libcurl3 

and got the error below:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 curl : Depends: libcurl4 (= 7.58.0-2ubuntu3.8) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

So I changed my command to:

$ sudo apt-get install curl libcurl4

And always remember to update packages before, as shown by Heynnema!