Python 启动flask报错:AttributeError: module ‘time‘ has no attribute ‘clock‘

Python 启动flask报错:AttributeError: module ‘time’ has no attribute ‘clock’

问题描述——AttributeError: module ‘time’ has no attribute ‘clock’

python 使用 下面命令启动flask项目的时候报错:

python manager.py runserver -h 0.0.0.0 -p 8080

Python 启动flask报错:AttributeError: module ‘time‘ has no attribute ‘clock‘_第1张图片

问题原因

错误分析:在python3.8中,time模块下不支持clock,改成time.perf_counter()即可解决错误。
改后代码是这样的:

解决方法

你可能感兴趣的:(flask,python,后端)