Ubuntu 22.04 安装星火应用商店

到该软件项目代码仓库的发行版页面,选择最新的稳定版本的星火应用商店DEB包来安装该软件商店: https://gitee.com/spark-store-project/spark-store/releases

在撰写/更新本文的当前(2024-06),v4.2.13.1 是最新稳定版本。

因此就安装此版本。

1
2
3
4
5
6
7
8
9
10
11
# 开始安装Sparkstore的最新稳定版本
sudo apt update
sudo apt upgrade -y

# 版本号,由你想安装的稳定版版本号来决定
set STORE_VER=4.2.13.1
sudo cd /opt
wget https://gitee.com/spark-store-project/spark-store/releases/download/${STORE_VER}/spark-store_${STORE_VER}_amd64.deb

# 安装星火商店
sudo apt install -yf ./spark-store_${STORE_VER}_amd64.deb