如何从终端在Ubuntu上安装卓越的编辑器


Answers:


9

打开终端并输入:

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

和:

sudo gdebi remarkable_1.62_all.deb

如果遇到类似错误的提示gdebi: commande not found,可以通过键入以下内容进行安装:

sudo apt-get install gdebi-core

gdebi?为什么不使用该标准dpkg -i来安装debian软件包?
darksky 2015年

2
@darksky gdebi自动丢失相关性,看看这个问题
Bilal

5

您只需要做:

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

然后(添加缺少的依赖项):

apt-get upgrade -f

和重试安装:

dpkg -i remarkable_1.62_all.deb

1
毫无疑问,这是正确的方法。
Travis van der Font

0

2019更新

您只需要做:

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

您可能会遇到缺少依赖项错误(以添加缺少的依赖项):

sudo apt-get upgrade -f

和重试安装:

dpkg -i remarkable_1.87_all.deb

+1这是最新版本,并sudo apt-get upgrade -f解决所有安装错误
Leos313

功能与三年前odevarc的回答相同。
dotancohen
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.