11

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

janos
  • 4,968
Bilal
  • 3,747

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,582
Bilal
  • 3,747
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
  • 5,013
odevarc
  • 51