我在ubuntu 14.04 LTS上打包电子应用程序使用snapcraft.I通过引用此链接构建它.Package已成功构建但是当我使用以下命令安装包时
sudo snap install springbok_1.0.1_i386.snap
Run Code Online (Sandbox Code Playgroud)
它显示以下错误消息
ZOE ERROR (from /usr/lib/snap/snap): error opening parameter file
Run Code Online (Sandbox Code Playgroud)
这是我的 snapcraft.yaml
name: springbok
version: 1.0.1
summary: The simplest way to keep notes.
description: The simplest way to keep notes. Light, clean, and free.
vendor: Ajatus software <pitabas.prathal@ajatus.co.in>
icon: icon.png
apps:
springbok:
command: wrapper
plugs: [unity7, opengl, network]
parts:
springbok:
plugin: copy
stage-packages:
- libnss3
- fontconfig-config
- gnome-themes-standard
files:
springbok: springbok
wrapper: usr/bin/wrapper
icudtl.dat: icudtl.dat
snapshot_blob.bin: snapshot_blob.bin
natives_blob.bin: natives_blob.bin …Run Code Online (Sandbox Code Playgroud)