Issue
I'm trying to read in a regular csv file into pandas through pd.read_csv(). I have done this on my local desktop many times before but I am using a virtual machine now and am getting this error :
ImportError: cannot import name 'is_url' from 'pandas.io.common' (/opt/conda/lib/python3.7/site-packages/pandas/io/common.py)
Can anyone help me understand what's happening and how to resolve it? I have tried updating as well as uninstalling and reinstalling pandas already.
Solution
conda update --force-reinstall pandas
this worked for me.
Answered By - melkorCba
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.