将ide的文件目录PyCharm 2022.3.3\plugins\python\helpers\pydev\_pydev_bundle中的pydev_monkey.py文件
第816行的
_get_threading_modules_to_patch函数中的
try: import thread as _thread except: import _thread
改为
import _thread
即可解决
或者直接卸载 thread库
本质上是因为thread库现在已被弃用,ide错误地将thread库当成新版的_thread库用