安装 Python 3.4.3 后软件中心不起作用

安装 Python 3.4.3 后软件中心不起作用

我的 Ubuntu 15.04 出现问题,安装 Python 3.4.3 后,我无法运行软件中心,并出现以下消息:

File "/usr/bin/software-center", line 140
     print time.time()
SyntaxError: invalid syntax

答案1

事实并非如此,因为https://wiki.ubuntu.com/Python/3

/usr/bin/python 和 /usr/bin/python2 将指向 Python 2.7,而 /usr/bin/python3 将指向最新支持的 Python 3 版本。

$ grep -nH python /usr/bin/software-center
/usr/bin/software-center:1:#! /usr/bin/python

$ /usr/bin/python --version
Python 2.7.10

请检查你的输出/usr/bin/python --version

相关内容