0

Just started with the chatterbox application and got this error:- error

After some research, I found that time.clock has been removed for py 3.8+. My python version is 3.9.7. I have checked the solutions provided here, but after checking the directory of my error code I am unable to find the code mentioned there:-

Step 2

Go to your error the last line and go to that directory and open that particular file. search time.clock using ctrl+f and replace it with time.time

time.clock is not there.

How to proceed on this?

  • Your error traceback shows you the exact location of the source file (".../util/compat.py"). That's the file you need to edit. – Tim Roberts Mar 09 '22 at 19:51

1 Answers1

2

just use this - to get your time

import time
time.clock = time.time
Ran A
  • 746
  • 3
  • 7
  • 19