ImportError: cannot import name 'clock' from 'time' (unknown location)
时间: 2023-11-17 12:05:20 浏览: 163
导入tensorflow时报错:cannot import name 'abs'的解决
这个错误是因为在Python 3.3版本之后,time模块中的clock()函数被移除了。如果你的代码中使用了clock()函数,那么在Python 3.3及以上版本中就会出现这个错误。解决方法是使用perf_counter()或者process_time()函数来代替clock()函数。在你的代码中,可以将time.clock()替换为time.perf_counter()或者time.process_time(),这样就可以解决这个错误了。
阅读全文