本人为方便调试特地安装了Komodo来作为Python的调试环境补料缺遭遇了水土不服的问题,解决问题非常简单,如下:
1、找到ActiveState Komodo IDE 7\lib\support\dbgp\python3lib\dbgp\client.py文件
2、打开文件修改其中的部分语句
其中6.x中在文件的657行附近(class h_execfile(h_base):类定义处)
将contents = open(file).read()修改为contents = open(file,encoding='utf8').read()
7.x版本中在文件的659行附近
将fd = open(file)修改为fd = open(file,encoding='utf8')
通过以上步骤即可解决此问题