2019年10月3日木曜日

Electron-builderでパッケージ化したLinux用ファイルの実行方法

Electron-builderで Linux用ファイル をパッケージ化すると、
・・・.AppImage
・・・.amd64.snap
というファイルができた。
Ubuntu上でどうやって実行するか分からず、調べてみると AppImage は以下のようにすればよかった。

You have to follow three simple steps to run an AppImage on Ubuntu Linux.
  1. Download .appimage package.
  2. Make it executable by following Right Click on software >> Properties >> Permission Tab >> Check "Allow executing the file as program.
  3. Now run the program.


snapファイルのほうは以下をみると、 インストールするタイプのようですがまだやっていません...

How to Install and Use Snap on Ubuntu 18.04


$ snap install <snapfile>

でエラー(error: cannot find signatures with metadata for snap "snapfile.snap")がでるときは、以下のようにすればよいそうです。

$ snap install --dangerous <snapfile> 

認証されていないプログラムなのでエラーになるようで、 --dangerous はそれを無視するオプションですね。

0 件のコメント:

コメントを投稿