pyinstaller AttributeError: module 'time' has no attribute 'clock'
时间: 2023-09-30 20:12:40 浏览: 150
pyinstaller打包exe报错:ModuleNotFoundError: No module named 'serial'
错误信息"AttributeError: module 'time' has no attribute 'clock'"表示在使用pyinstaller时出现了问题。该错误通常是由于代码中使用了已被弃用的time模块的clock方法导致的。在Python 3.8版本中,time模块的clock方法已被弃用,因此在新版本中无法使用。
为了解决这个问题,您可以考虑以下两种方法之一:
1. 更新代码:将使用time模块的clock方法的代码替换为time模块中的其他合适的方法,如time.perf_counter()或time.process_time()。
2. 降级Python版本:如果您的代码依赖于clock方法,并且无法修改代码,则可以考虑降级到Python的早期版本,例如Python 3.7。
请根据您的具体情况选择适合的解决方法。<span class="em">1</span><span class="em">2</span>
#### 引用[.reference_title]
- *1* *2* [python 中module ‘time‘ has no attribute ‘clock‘问题的解决](https://blog.csdn.net/ytjoh/article/details/121093228)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文