AttributeError: module 'threading' has no attribute 'setcancelstate'
时间: 2023-12-13 11:34:12 浏览: 72
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为Python的threading模块不支持setcancelstate()函数导致的。setcancelstate()函数是POSIX线程库中的函数,而Python的threading模块是对POSIX线程库的封装,因此可能会出现这种情况。如果你需要使用setcancelstate()函数,可以考虑使用Python的ctypes模块来调用POSIX线程库中的函数。
阅读全文