eclipse+pydev中文问题

eclipse+pydev 在linux下是有中文问题的,会提示:

 

SyntaxError: Non-ASCII character '\xe7' in file /media/编程/Eclipse3_6/linux_ws/pythonTestOnLinux/src/test/test.py on line 43, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details

 

 这是因为eclipse的utf-8是没有文件头的,我们在写的时候可以在每个文件的开头加上:

#coding=UTF-8

这样就不会有中文问题了

 

你可能感兴趣的:(eclipse,html,编程,linux,python)