You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please update time.clock to time.pref_counter() as time.clock() has been depreciated from python 3.3 forward
reason it was depreciated was due to its lack of cross compatibly.
source of solution: https://stackoverflow.com/questions/58569361/attributeerror-module-time-has-no-attribute-clock-in-python-3-8
short version
change line 20 start = time.clock()
to this
start = time.time()
or this
start = time.perf_counter()
The text was updated successfully, but these errors were encountered:
Please update
time.clock
totime.pref_counter()
as time.clock() has been depreciated from python 3.3 forwardreason it was depreciated was due to its lack of cross compatibly.
source of solution:
https://stackoverflow.com/questions/58569361/attributeerror-module-time-has-no-attribute-clock-in-python-3-8
short version
change line 20
start = time.clock()
to this
start = time.time()
or this
start = time.perf_counter()
The text was updated successfully, but these errors were encountered: