作者: | 来源:互联网 | 2023-07-13 19:14
在
pycache 文件夹中可以查看编译错误:
例如文件usbmux.cpython-39.pyc 打开以后可以看到编译错误记录,如下图:
TabError: inconsistent use of tabs and spaces in indentation
这个是缩进使用了不同的符号,比如tab 换成了空格,解决方法:
编译器显示table和空格的符号
例如sublime设置Preferences -> setting,在右边自定义区添加:
“draw_white_space”: “all”
显示所有符号
例如下图103用了2个tab 104用了连续空格,所以报错:
复制上面的2个
TypeError: can only concatenate str (not “bytes”) to str
最后可以同时安装python2和python3
官网下载地址:
mac版本python官网
安装完以后可以把指令改成python2 来执行py文件