-
Notifications
You must be signed in to change notification settings - Fork 336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
module 'time' has no attribute 'clock' #100
Comments
Simply change |
我也有这个问题,但是在2.7版本可以运行。你可以尝试改成2.7,也可以把相应的函数替换为3.8版本的 use time.perf_counter or time.process_time instead time.clock() 改完以后,我这边3.8版本,运行成功。 |
Modifying the source code isn't a good practice, since that means you cannot migrate your code to a another device. Try this instead(before the official fix this):
Then your code will run well no matter on a Python<3.8 or a Python>=3.8. |
It works. Thank you. |
在Python 3.8中,time.clock()已经被移除了。但是切割句子时仍然使用了这个。
The text was updated successfully, but these errors were encountered: