Bug #2
Labels
documentation
Improvements or additions to documentation
good first issue
Good for newcomers
hacktoberfest
Hacktoberfest
A common error SOLVED
If you are using Python 3.8 , download the previous version
Go to CMD
pip install chatterbot==1.0.4
This will work and everything is installed
You will probably get an error after some time, where it says
File "C:\Python38\lib\site-packages\sqlalchemy\util\compat.py
", line 264, in
time_func = time.clock
AttributeError: module 'time' has no attribute 'clock'
This is because time.clock() function was removed in Py 3.8.
Go to the search bar and then paste the location given right above the last line of error
It will look something like this : C:\Python38\lib\site-packages\sqlalchemy\util\compat.py
Open file with IDLE or whatever editor you have
Then , go to line 264 in that . It would be written
time_func = time.clock
()
Instead of this change, it to
time.perf_counter()
Save the file and now run it. It will work.
#1
Shall I change these things in files?
One more error
ERROR: No matching distribution found for scipy==1.5.2
In requirements.txt it should be scipy==1.6.0 instead.
The text was updated successfully, but these errors were encountered: