7

My GitKraken does not complete the upgrade process, it gets caught on the download screen.

  • A few weeks ago it worked normally

  • Ubuntu Mate 18.04

enter image description here

Danijel
  • 8,198
  • 18
  • 69
  • 133
gugoan
  • 770
  • 2
  • 11
  • 35

2 Answers2

7

I had a similar problem, so I installed GitKraken using command line:

  • Open the Ubuntu's Terminal app

  • Download the Linux debpackage from https://www.gitkraken.com/download:

    • wget https://release.gitkraken.com/linux/gitkraken-amd64.deb
  • Install the deb package:

    • sudo dpkg -i ./gitkraken-amd64.deb

Better yet, put all that into a gitkraken_update.sh script:

#!/bin/bash
#
#
echo " Installing GitKraken..."
cd ${HOME}/Downloads
wget https://release.gitkraken.com/linux/gitkraken-amd64.deb
sudo dpkg -i ./gitkraken-amd64.deb
echo " Done."
Danijel
  • 8,198
  • 18
  • 69
  • 133
0

you just download te install package from the oficial page web(https://www.gitkraken.com/download) and install, thats work for me, sorry for my english

Gal05
  • 24
  • 3