11

How should I install the Remarkable editor on Ubuntu 14.04 in a terminal session?

janos
  • 4,888
Bilal
  • 3,699

2 Answers2

9

Open the terminal and type :

wget https://remarkableapp.github.io/files/remarkable_1.62_all.deb

And :

sudo gdebi remarkable_1.62_all.deb

if you get error like gdebi: commande not found you can install it by typing :

sudo apt-get install gdebi-core
hg8
  • 13,462
Bilal
  • 3,699
  • gdebi ? Why don't you use the standard dpkg -i to install a debian package? – darksky Jun 21 '15 at 22:43
  • 2
    @darksky gdebi automatically gets missing dependancies, take a look at this question – Bilal Jun 21 '15 at 22:52
  • I'm back after few years, if anyone runs into Dependency is not satisfiable: gir1.2-webkit-3.0 error on Ubuntu 20.04, download fixed deb from here – Bilal Jul 12 '22 at 18:35
  • This solution combined with last comment from Bilal above Dependency is not satisfiable: gir1.2-webkit-3.0 worked on Ubuntu 22.04 with Remarkable 1.87 .deb package. – kkyucon Sep 15 '22 at 02:48
5

you just have to do :

wget https://remarkableapp.github.io/files/remarkable_1.62_all.deb
dpkg -i remarkable_1.62_all.deb

then (to add missing dependencies) :

apt-get upgrade -f

and the retry install :

dpkg -i remarkable_1.62_all.deb
storm
  • 4,973
odevarc
  • 51