我最近刚刚在我的新笔记本电脑上安装了 Ubuntu,在安装过程中正确执行了所有步骤,从网上安装了新的应用程序和驱动程序。安装完 Ubuntu 后,我尝试通过终端安装 MariaDB,方法是输入:
sudo apt-get install software-properties-common
然后返回以下错误:
sudo apt-get install software-propterties-common
File "<stdin>", line 1
sudo apt-get install software-propterties-common
^
SyntaxError: invalid syntax
我怎样才能让我的 termianl 正常工作?
您正在 Python 解释器中运行该命令。该命令应该在 shell 中运行。如果您仍在 Python 解释器中,请使用Ctrl+D或键入
exit()
退出解释器并返回到 shell,或者按Ctrl++Alt打开T一个新终端。在那里执行命令。