问题描述
就像标题说的那样。我对 Ubuntu 还很陌生,但大约一年前我已经使用过它。当时我得到了帮助,但现在这看起来很混乱。我已经阅读了 Installing Software 文章,我目前正在尝试安装 Steam,当我这样做时:
cd ~/downloads/
sudo dpkg steam_latest.deb
我收到一条错误消息,说我需要 python-apt,我尝试这样做
sudo apt-get python-apt
但它说无效操作 你们能列出安装应用程序的方法,并像我五岁一样描述它吗?谢谢。
编辑:在这种情况下我不是在谈论使用 wine,只是使用 Valve 本身的实际包。
最佳方法
您几乎已经正确了,要安装 steam,您需要将 -i
标志添加到 dpkg,如下所示:
sudo dpkg -i steam_latest.deb
如果仍然失败,您可以通过这种方式安装 python-apt
,您也几乎是正确的:
sudo apt-get install python-apt
次佳方法
当您尝试安装 Steam 时,这里有一种不同的方法:直接从 Ubuntu 的 multiverse 存储库安装 Steam
sudo add-apt-repository multiverse
sudo apt-get update
sudo apt-get install steam
参考:https://linuxconfig.org/how-to-install-steam-on-ubuntu-16-04-xenial-xerus