snap でインストールしたが
動作しないため一度アンインストールする
を参考に
1 | sudo snap remove acrordrdc |
で削除
UbuntuにAdobe Acrobat Readerを入れる
を参考に
1 | wget -O ~ /adobe .deb ftp : //ftp .adobe.com /pub/adobe/reader/unix/9 .x /9 .5.5 /enu/AdbeRdr9 .5.5-1_i386linux_enu.deb |
でパッケージ取得
1 2 | sudo dpkg --add-architecture i386 sudo apt update |
で
i386アーキテクチャ有効化
インストールに必要なライブラリをいれる
1 | sudo dpkg -i ~ /adobe .deb |
でインストール
このまま
1 | acroread |
で起動できるけど
言語が英語になる
日本語対応するので
1 2 3 4 | wget http: //ardownload .adobe.com /pub/adobe/reader/unix/9 .x /9 .1 /misc/FontPack910_jpn_i486-linux . tar .bz2 tar xavf FontPack910_jpn_i486-linux. tar .bz2 sudo bash . /JPNKIT/INSTALL |
でインストールできる
1 2 3 4 | Welcome to the Asian Language Kit installation. This installation will not work if you do not have the Unix Adobe Reader version 9.1 installed prior to this installation. If you do not have Adobe Reader version 9.1 already installed on your system please do so before installing this Asian Language Kit. Continue installation? [y] |
となるので
y
1 2 3 4 5 6 | The font software contained in this package is being licensed to you solely for use with the Adobe Reader product ( "Adobe Reader" ) subject to the terms and conditions of the Electronic End User License Agreement accompanying the Adobe Reader. Please type "accept" to accept the terms and conditions of license agreement; Type "decline" to exit . |
でライセンスに同意なので
accept
1 | Enter the location where you installed the Adobe Reader [ /opt ] |
はインストール場所
そのまま
Enter
これで一応起動はできるようになった
How to Install Adobe Acrobat Reader on Ubuntu 20.04 Focal Fossa Linux
にあるように
バージョンが古くリスクがあるため
pyautogui のテスト以降は別のものを利用することにする
なお
1 | which acroread |
でパスを調べたら
1 | /usr/bin/acroread |
となっていた