Closed elocke-abroaden closed 5 years ago
Looks like it's a pandas bug: "Work around is to roll back to prior version of Pandas 0.24.2 pip3 install --upgrade pandas==0.24.2"
If you can live without Python 2.x and are now using Python 3.x you can simply change
from pandas.compat import StringIO
to
from io import StringIO
Anyway I will remove Python 2.7 compat in 2020
Excellent, thanks for the update. I'll amend the line in the code. Thanks again.
I installed the libary but when trying to run it, I receive an import error staying that it cannont import name "StringIO":
I'm running Python 3.6.8.
I checked around and it seems that StringIO is either no longer supported or is not installed in the latest version of Pandas.
Any idea on a workaround?