Eclipese中安装PythonDev时出现syntaxerror:non-utf-8 code starting with \xc4'in file ...........

时间:2023-01-05 23:31:00

#python版本使用的是python-3.5

#eclipse安装的是截止2018年5月27日最新版本

第一次在Eclipse建立python工程,添加了自己新建的文件,测试PythonDev安装正确与否,

显示错误如下:

SyntaxError: Non-UTF-8 code starting with '\xba' in file G:\workspace\Eclipse\MyProject\src\OS_Dmo.py on line 2, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details

其实这个是文件内容编码问题!!!

解决方法:

1,打开当前工程属性。

Eclipese中安装PythonDev时出现syntaxerror:non-utf-8 code starting with \xc4'in file ...........

2,依次点击我红色画圈地方,随后点击“OK”按钮退出就可以了。

注意:这只是对当前工程修改了文件编码,如果以后建立其它工程,遇到编码问题,当然也应该用这种方法解决!!

参考文章:http://www.chengxuyuans.com/Python/83743.html

参考博客:https://blog.csdn.net/sunylat/article/details/53856804