GitKraken yüklenemiyor


16

GitKraken'i (A Git GUI) web sitesinden indirerek yeni kurdum. 'Discover Center' üzerinden yüklemeye çalıştığımda çalışmıyor. Bu yüzden çevrimiçi bir yerde komut buldum dpkg -i [filename], gitkraken .deb ve andddd MAGIC üzerinde kullandım! İşe yarıyor!

Daha sonra ( gitkrakenterminalde yazarak) GitKraken'i çalıştırmayı denedim ve bu bana bu güzel hatayı verdi:

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)

Herhangi bir yardım BÜYÜK takdir edilecektir.



@steeldriver Bu soruyu zaten gördüm. Cevapların hiçbiri işe yaramadı.
Matias K

Bunları deneyin:, sudo apt updatesonra sudo apt dist-upgradetekrar deneyin
George Udosen

Yanıtlar:


14

İçinde terminal...

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

Şimdi uygulamanızın çalışması gerekir.


Sen bir hayat kurtarıcısın.
Matias K

8

Ubuntu 16.04 üzerine libgnome-keyring-common ve libgnome-keyring-dev'i benim için çözdüm:

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

1
Bu, Kubuntu gibi GNOME tabanlı olmayan bir masaüstü ortamına sahip dağıtımlar için geçerlidir.
Bruno Finger

1
Bu benim için Kubuntu'da da işe yaradı! Teşekkürler!
Brock Vond

1

Aşağıdaki komutu kullandım:

$ sudo apt-get install curl libcurl3 

ve aşağıdaki hatayı aldı:

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.

Bu yüzden komutumu şu şekilde değiştirdim:

$ sudo apt-get install curl libcurl4

Heynnema tarafından gösterildiği gibi, paketleri daha önce güncellemeyi unutmayın!

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.