GitKraken kann nicht installiert werden

16

Ich habe gerade GitKraken (eine Git-GUI) installiert, indem ich es von der Website heruntergeladen habe. Wenn ich versuche, es über 'Discover Center' zu installieren, funktioniert es nicht. Also habe ich irgendwo online den Befehl gefunden dpkg -i [filename], habe ihn auf der gitkraken .deb benutzt, andddd MAGIC! Es klappt!

Ich habe dann versucht, GitKraken (durch Eingeben im gitkrakenTerminal) auszuführen , und das gab mir diesen schönen Fehler:

Node started time: 1489531028950
libcurl.so.4: cannot open shared object file: No such file or directory
Error: libcurl.so.4: cannot open shared object file: No such file or directory
    at Error (native)
    at process.module.(anonymous function) [as dlopen] (ELECTRON_ASAR.js:158:20)
    at Object.Module._extensions..node (module.js:568:18)
    at Object.module.(anonymous function) [as .node] (ELECTRON_ASAR.js:169:18)
    at Module.load (module.js:456:32)
    at tryModuleLoad (module.js:415:12)
    at Function.Module._load (module.js:407:3)
    at Module.require (module.js:466:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (/usr/share/gitkraken/resources/app.asar/node_modules/nodegit/dist/nodegit.js:11:12)
    at Module._compile (module.js:541:32)
    at Object.Module._extensions..js (module.js:550:10)
    at Module.load (module.js:456:32)
    at tryModuleLoad (module.js:415:12)
    at Function.Module._load (module.js:407:3)
    at Module.require (module.js:466:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (/usr/share/gitkraken/resources/app.asar/src/appBootstrap/upgradeScripts/versionScripts/v1_5_0.js:7:17)
    at Module._compile (module.js:541:32)
    at Object.Module._extensions..js (module.js:550:10)
    at Module.load (module.js:456:32)
    at tryModuleLoad (module.js:415:12)
    at Function.Module._load (module.js:407:3)
    at Module.require (module.js:466:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (/usr/share/gitkraken/resources/app.asar/src/appBootstrap/upgradeScripts/versionScripts/index.js:5:28)
    at Module._compile (module.js:541:32)
    at Object.Module._extensions..js (module.js:550:10)
    at Module.load (module.js:456:32)
    at tryModuleLoad (module.js:415:12)
    at Function.Module._load (module.js:407:3)
    at Module.require (module.js:466:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (/usr/share/gitkraken/resources/app.asar/src/appBootstrap/upgradeScripts/index.js:7:24)
    at Module._compile (module.js:541:32)
    at Object.Module._extensions..js (module.js:550:10)
    at Module.load (module.js:456:32)
    at tryModuleLoad (module.js:415:12)
    at Function.Module._load (module.js:407:3)
    at Module.require (module.js:466:17)
    at require (internal/module.js:20:19)
    at EventEmitter.module.exports.app.on (/usr/share/gitkraken/resources/app.asar/src/appBootstrap/main.js:146:5)
    at emitOne (events.js:101:20)
    at EventEmitter.emit (events.js:188:7)

Jede Hilfe wäre sehr dankbar.

Matias K
quelle
@steeldriver Schon diese Frage gesehen. Keine der Antworten hat funktioniert.
Matias K
Versuchen Sie diese: sudo apt update, dann sudo apt dist-upgrade, dann versuchen Sie es erneut
George Udosen

Antworten:

14

In terminal...

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

Jetzt sollte Ihre App funktionieren.

Heynnema
quelle
Du bist ein Lebensretter.
Matias K
8

Ich habe libgnome-keyring-common und libgnome-keyring-dev auf Ubuntu 16.04 installiert, was es für mich gelöst hat:

sudo apt install libgnome-keyring-common libgnome-keyring-dev 
mit
quelle
1
Dies funktioniert für Distributionen mit einer Desktop-Umgebung, die nicht auf GNOME basiert, wie z. B. Kubuntu.
Bruno Finger
1
das hat auch bei Kubuntu geklappt! Vielen Dank!
Brock Vond
1

Ich habe den folgenden Befehl verwendet:

$ sudo apt-get install curl libcurl3 

und habe den folgenden Fehler erhalten:

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.

Also habe ich meinen Befehl geändert zu:

$ sudo apt-get install curl libcurl4

Und denken Sie immer daran, Pakete vorher zu aktualisieren, wie von Heynnema gezeigt!

Mahlatse
quelle