calibre最新版本是5.4
二进制安装 ,
sudo -v && wget -nv -O- https://download.calibre-ebook.com/linux-installer.sh | sudo sh /dev/stdin
注意:如果有证书错误,
sudo -v && wget –no-check-certificate -nv -O- https://download.calibre-ebook.com/linux-installer.sh | sudo sh /dev/stdin
在运行安装程序之前,您必须在系统上安装XDG-Utils,Wget,XZ-Utils和Python≥2.6。
你需要GLIBC 2.18或更高版本和libstdc + + .so.6.0
如果您收到错误无法加载Qt Platform Plugin XCB,则您缺少一些所需的X11-XCB库,例如Libxcb-Xinerama0,有关详细信息请参阅此处。
您可以从默认(/ opt)中更改文件夹级,如下所示:
sudo -v && wget -nv -O- https://download.calibre-ebook.com/linux-installer.sh | sudo sh /dev/stdin install_dir=/opt
将上面更改/opt到您想要自动安装的任何文件夹。
您还可以执行“孤立”安装,只触摸安装文件夹中的文件,不需要以root身份运行,如下所示:
wget -nv -O- https://download.calibre-ebook.com/linux-installer.sh | sh /dev/stdin install_dir=~/calibre-bin isolated=y
手动二进制安装
sudo mkdir -p /opt/calibre && sudo rm -rf /opt/calibre/* && sudo tar xvf /path/to/downloaded/calibre-tarball.txz -C /opt/calibre && sudo /opt/calibre/calibre_postinstall
源代码安装