How to solve import error for pandas using iPython Notebook on Windows?

后端 未结 2 611
独厮守ぢ
独厮守ぢ 2021-01-12 22:48

I\'m trying to import pandas while using iPython. My overall purpose is to use XLwings.

I\'m on Windows 7 and have used Anaconda to install Python, pandas and all t

2条回答
  •  执笔经年
    2021-01-12 23:39

    As posted by Jeff in the comments:

    There is a bug in older versions (of conda) where if you had updated pandas WHILE it was being used it didn't update correctly. Try closing all python processes, then

    conda remove pandas
    
    conda install pandas
    

提交回复
热议问题