環境
- Ubuntu 22.04
ダウンロード
以下から Linux 用の AppImage をダウンロードします。
実行手順
実行権限を与えて実行するだけです。
chmod +x orca-linux.AppImage
./orca-linux.AppImage
エラーがでた場合
私の環境では以下のエラーが出ました。
dlopen(): error loading libfuse.so.2
AppImages require FUSE to run.
You might still be able to extract the contents of this AppImage
if you run it with the --appimage-extract option.
See https://github.com/AppImage/AppImageKit/wiki/FUSE
for more information
libfuse2 が必要みたいなので、以下で追加しました。
sudo add-apt-repository universe
sudo apt update
sudo apt install libfuse2
これで無事起動しました。