TabError: inconsistent use of tabs and spaces in indentation问题解决 (ubuntu16.04+python3.6 )

报错:
# python test_yolo.py model_data/yolo.h5

  File "test_yolo.py", line 118
    print('image_file =',image_file)
                                   ^
TabError: inconsistent use of tabs and spaces in indentation

IndentationError: unindent does not match any outer indentation level

原因:

ubuntu(linux)下,缩进用空格(Space)键,如果用Tab键,系统报错。windows下不存在该问题。

print('image_file =',image_file) 改行缩进使用了Tab键。

解决办法:

用Tab的位置使用空格(Space)键替换。

 

你可能感兴趣的:(1024程序员节)