GitKrakenをインストールできません


16

GitKraken(Git GUI)をWebサイトからダウンロードしてインストールしました。「Discover Center」を介してインストールしようとすると、機能しません。だから私はオンラインのどこかでコマンドを見つけdpkg -i [filename]、gitkraken .deb、およびddd MAGICで使用しました!できます!

次に、GitKrakenを(gitkrakenターミナルに入力して)実行しようとしましたが、この美しいエラーが発生しました。

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)

どんな助けも大歓迎です。



@steeldriverはすでにその質問を見ました。答えはどれもうまくいきませんでした。
マティアスK

これらを試してください:sudo apt update、そしてsudo apt dist-upgrade、もう一度試してください
ジョージウドセン

回答:


14

terminal...

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

これでアプリが動作するはずです。


あなたは命の恩人です。
マティアスK

8

libgnome-keyring-commonとlibgnome-keyring-devをubuntu 16.04にインストールしました。

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

1
これは、KubuntuなどのGNOMEに基づいていないデスクトップ環境のディストリビューションで機能します。
ブルーノフィンガー

1
これはKubuntuでもうまくいきました!ありがとう!
ブロックフォン

1

次のコマンドを使用しました。

$ sudo apt-get install curl libcurl3 

以下のエラーが発生しました:

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.

そこで、コマンドを次のように変更しました。

$ sudo apt-get install curl libcurl4

また、Heynnemaが示すように、常にパッケージを更新することを忘れないでください!

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.