Jupyter python3 notebook cannot recognize pandas

后端 未结 14 954
终归单人心
终归单人心 2020-12-14 15:56

I am using the Jupyter notebook with Python 3 selected. On the first line of a cell I am entering:

import pandas as pd

The error I get from

14条回答
  •  醉梦人生
    2020-12-14 16:20

    Maybe its a broken (pip) installation. Following worked for me:

    sudo apt --fix-broken install

    Followed by:

    sudo pip3 install pandas

    Hope this helps.

提交回复
热议问题