python: after installing anaconda, how to import pandas

前端 未结 13 2136
眼角桃花
眼角桃花 2021-01-31 18:00

I have installed anaconda. Now when i am trying to run

import pandas as pd

I am getting the following error

Traceback (most re         


        
13条回答
  •  囚心锁ツ
    2021-01-31 18:53

    I'm using python 3.4 and Anaconda3 4.2.

    I had the same problem, but it worked (the import pandas works now anyway) for me to install pandas with pip by writing:

    python -m pip install pandas

    Good luck!

提交回复
热议问题