2

I downloaded the .deb file of Remarkable Markdown editor in Ubuntu 20.04. As soon as I started to run the .deb file, it is showing the following error:

Error: Dependency is not satisfiable: gir1.2-webkit-3.0

As far as I know, WebKit is a browser engine for Apple Products. I do not know why it is required on Linux. Any help in resolving this will be very much appreciated.

2 Answers2

8

You can still install Remarkable on Ubuntu from Snap by using command below:

snap install remarkable

But better way is to use its modern and mature alternative named ReText. It is installable from official repositories by

sudo apt-add-repository universe
sudo apt-get update
sudo apt-get install retext
N0rbert
  • 103,263
0

Here is a fix for installing Remarkable 1.87 with .deb file format that worked for me and others.

although I recommend install it via gdebi instead of dpkeg -i by this command

sudo gdebi <your deb file.deb>

for remarkable use this:

sudo gdebi remarkable_1.18_.deb

Note: if you don't have gdebi install it :

sudo apt install gdei

Hope this helps others