解决运行terminator出现以下问题:File "/usr/bin/terminator"....SyntaxError: invalid syntax

在安装terminator出现以下问题:

lin@Dev:~$ terminator
  File "/usr/bin/terminator", line 123
    except (KeyError,ValueError), ex:
                                ^
SyntaxError: invalid syntax

出现语法错误
原因:使用python3去运行python2的代码。
查看terminator的启动脚本文件,默认使用系统链接的是python的版本。
解决运行terminator出现以下问题:File
系统安装的python的版本有两个分别是python2.7和python3.6,当python链接到python2.7时,程序运行正常,链接到python3.6时出现以上的语法错误。
解决运行terminator出现以下问题:File
解决方法有以下两种:
1、将系统默认链接的python版本更改为python2.x;
(由于其他编程的需要使用python3.x,所以没有采用这种方法)

2、修改terminator的启动脚本如下:

#! /usr/bin/python2

将之前的python更改为python2修改如下图:
在这里插入图片描述

解决,成功运行terminator:
解决运行terminator出现以下问题:File

你可能感兴趣的:(linux开发与学习相关,Ubuntu环境搭建)