melik
melik

Reputation: 1332

ANACONDA "ModuleNotFoundError: No module named 'pandas.tslib'" in pandas python

I would like to run below code but I received an error in my anaconda environment. How can I solve this issue in Anaconda? Please help!

Thank you.

 import pandas as pd
 import numpy as np
 from statsmodels.tools.eval_measures import rmse, aic
 from darts import TimeSeries
 from darts.utils.timeseries_generation import gaussian_timeseries, linear_timeseries
 from darts.models import RNNModel, TCNModel, TransformerModel, NBEATSModel, BlockRNNModel
 from darts.metrics import mape, smape
 from darts.utils.timeseries_generation import datetime_attribute_timeseries

enter image description here

After I tried

 conda uninstall pandas
 conda install pandas

Error message becomes :

enter image description here

Upvotes: 0

Views: 824

Answers (1)

Kofi
Kofi

Reputation: 1314

Check the corresponding path, if you do not find pandas._libs.tslib module then you would have to uninstall pandas and reinstall again.

conda uninstall pandas
conda install pandas

You can also check if the version of pandas you are using is consistent with the version of python

Upvotes: 1

Related Questions