AttributeError: module ‘time‘ has no attribute ‘clock‘的解决方法

简介: 在python3.10中flask项目运行报错: AttributeError: module 'time' has no attribute 'clock'解决方案主要原因是因为python3.10中不支持clock了, 需要替换成 time.perf_counter()cpmpat.py文件:


在python3.10中flask项目运行报错: AttributeError: module 'time' has no attribute 'clock'解决方案


主要原因是因为python3.10中不支持clock了, 需要替换成 time.perf_counter()


cpmpat.py文件:


if win32 or jython:
    time_func = time.clock
else:
    time_func = time.time


改为:


if win32 or jython:
    time_func = time.perf_counter()
else:
    time_func = time.time


问题解决!🚀

目录
相关文章
|
数据处理 Python
AttributeError: module ‘numpy‘ has no attribute ‘array‘解决办法
AttributeError: module ‘numpy‘ has no attribute ‘array‘解决办法
848 0
|
5月前
|
Python
【Python】已解决:AttributeError: module ‘sys’ has no attribute ‘setdefaultencoding’
【Python】已解决:AttributeError: module ‘sys’ has no attribute ‘setdefaultencoding’
272 0
|
5月前
|
Unix API Python
【Python】已完美解决:(Python3.8异常)AttributeError: module ‘time‘ has no attribute ‘clock‘
【Python】已完美解决:(Python3.8异常)AttributeError: module ‘time‘ has no attribute ‘clock‘
112 0
|
5月前
|
机器学习/深度学习 Python
【Python】已解决TypeError: init() got an unexpected keyword argument ‘threshold’
【Python】已解决TypeError: init() got an unexpected keyword argument ‘threshold’
229 0
|
7月前
|
Python
AttributeError: module ‘numpy‘ has no attribute ‘int‘.
AttributeError: module ‘numpy‘ has no attribute ‘int‘.
160 0
|
Kubernetes Python 微服务
Python3异常-AttributeError: module 'sys' has no attribute 'setdefaultencoding
Python3异常-AttributeError: module 'sys' has no attribute 'setdefaultencoding
103 0
AttributeError: cannot assign module before Module.__init__() call 怎么解决?
这个错误通常是由于在__init__方法之外对模块中的某些成员进行了初始化或赋值操作,导致模块还没有被完全初始化就已经被调用了。为了解决这个问题,你需要将所有的初始化或赋值操作移到__init__方法内部。 例如,如果你有一个自定义模块MyModule,并且想要在其中定义一个类变量my_var,则应该将其放在__init__方法中:
774 0
ImportError: cannot import name ‘clock‘ from ‘time‘ (unknown location),已解决
ImportError: cannot import name ‘clock‘ from ‘time‘ (unknown location),已解决
560 0
ImportError: cannot import name ‘clock‘ from ‘time‘ (unknown location),已解决
解决办法:ImportError: 'module' object has no attribute 'check_specifier'
解决办法:ImportError: 'module' object has no attribute 'check_specifier'
144 0
|
PyTorch 算法框架/工具
问题解决:AttributeError: 'module' object has no attribute '_rebuild_tensor_v2'
问题解决:AttributeError: 'module' object has no attribute '_rebuild_tensor_v2'
277 0