Import pandas on jupyter ipython notebook fails

前端 未结 3 2101
时光取名叫无心
时光取名叫无心 2020-12-31 22:28

I am able to import the pandas package within the spyder ide; however, if I attempt to open a new juypter notebook, the import fails.

I use the Anaconda package dis

3条回答
  •  借酒劲吻你
    2020-12-31 22:42

    One thing that you can do it is install the libraries straight in Jupyter, you can try, in the cell:

    !pip install pandas
    

    or

    !pip3 install pandas
    

提交回复
热议问题