Python 启动flask报错:AttributeError: module ‘time’ has no attribute ‘clock’
问题描述——AttributeError: module ‘time’ has no attribute ‘clock’
python 使用 下面命令启动flask项目的时候报错:
问题原因
错误分析:在python3.8中,time模块下不支持clock,改成time.perf_counter()即可解决错误。
改后代码是这样的:
解决方法
我这么用的是python3.8环境,所以需要改
改成这样就可以了:
重新运行项目:
问题解决