搅拌机。蒸汽。我不能sudo apt-get install blender
或sudo apt-get install steam
。我必须去他们的网站下载安装程序,并安装与软件中心。所有升级都是相同的清洗-冲洗-重复周期。
为什么这些类型的程序没有包含在默认的Ubuntu repos中?技术或哲学上的原因是什么?
发布于 2018-10-05 13:19:22
您需要激活universe
存储库,以便能够安装搅拌器和蒸汽,因此确保您的/etc/apt/sources.list
中的下列行包含单词宇宙(即不注释那些):
deb http://archive.ubuntu.com/ubuntu bionic main restricted universe
deb-src http://archive.ubuntu.com/ubuntu bionic main restricted universe
deb http://archive.ubuntu.com/ubuntu bionic-updates main restricted universe
deb-src http://archive.ubuntu.com/ubuntu bionic-updates main restricted universe
deb http://archive.ubuntu.com/ubuntu bionic-backports main restricted universe
deb-src http://archive.ubuntu.com/ubuntu bionic-backports main restricted universe
deb http://archive.ubuntu.com/ubuntu bionic-security main restricted universe
deb-src http://archive.ubuntu.com/ubuntu bionic-security main restricted universe
或者,您可以执行以下行(这些行不太容易出错)来激活宇宙存储库:
sudo add-apt-repository universe
sudo apt-get update
sudo apt install blender steam
您可以为搅拌器添加此存储库,该存储库总是包含最新版本的:
sudo add-apt-repository ppa:thomas-schiex/blender
sudo apt-get update
sudo apt install blender
https://askubuntu.com/questions/1081172
复制相似问题