Discussion:
[conda] ModuleNotFoundError: No module named 'pandas.io.data'
Holger Otto ANDRĂ©
2018-07-25 14:57:22 UTC
Permalink
How can i solve this issue?
--
You received this message because you are subscribed to the Google Groups "conda - Public" group.
To unsubscribe from this group and stop receiving emails from it, send an email to conda+***@continuum.io.
To post to this group, send email to ***@continuum.io.
Visit this group at https://groups.google.com/a/continuum.io/group/conda/.
To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/conda/c073d0f5-331d-4f5a-b77c-88090d0787e9%40continuum.io.
For more options, visit https://groups.google.com/a/continuum.io/d/optout.
Paul Madden
2018-07-25 15:57:28 UTC
Permalink
I know very little about pandas, but
per http://pandas-datareader.readthedocs.io/en/latest/:

Starting in 0.19.0, pandas no longer supports pandas.io.data or
pandas.io.wb, so you must replace your imports from pandas.io with those
from pandas_datareader
I just created a pandas environment via Miniconda

$ conda create -y -n pandas -c conda-forge -c defaults --override-channels
pandas

and see that

$ conda list | grep pandas
# packages in environment at /home/pm/miniconda/envs/pandas:
pandas 0.23.3 py36_0 conda-forge

There are pre 0.19.0 packages available, though, if you need one: See e.g.

$ conda search -c conda-forge -c defaults pandas

You could change your installed version with "conda install", or create an
environment especially for this pandas version with "conda create".

I hope this helps.
--
You received this message because you are subscribed to the Google Groups "conda - Public" group.
To unsubscribe from this group and stop receiving emails from it, send an email to conda+***@continuum.io.
To post to this group, send email to ***@continuum.io.
Visit this group at https://groups.google.com/a/continuum.io/group/conda/.
To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/conda/4e8e6e15-bb63-43d8-bcde-451b654295e4%40continuum.io.
For more options, visit https://groups.google.com/a/continuum.io/d/optout.
Loading...