Deepin 15.10错误:找不到Deepin/stable的分发模板

Deepin 15.10错误:找不到Deepin/stable的分发模板

当我尝试通过包存储库在 Deepin 15.10 上安装 Docker 时,出现以下错误:

Error: could not find a distribution template for Deepin/stable

答案1

由于OP从未将他们的答案移出问题,这就是他们最初的答案。


从Deepin 15.10开始,基础内核是Debian稳定版,但在Deepin发行版模板中设置为不稳定;让我们改变这一点。

sudo nano /usr/share/python-apt/templates/Deepin.info

改变

Suite: unstable

Suite: stable

瞧,您现在可以添加 PPA,而不会出现上述问题。

答案2

您应该能够手动添加存储库。

像这样的东西:

curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -

printf 'deb [arch=amd64] https://download.docker.com/linux/debian stretch stable\n' \
| sudo tee /etc/apt/sources.list.d/docker-ce.list

相关内容