我用pip来安装熊猫。
https://drive.google.com/file/d/1rIyN9Rg9szkdlQBj30t9Jnz9LmNuJw-j/view?usp=sharing
我能够在python2中导入它。 https://drive.google.com/file/d/1VmaSGI6SRxXd6Vi1wJP_V0lpGbahkNim/view?usp=sharing
但无法在python3中导入该库。
https://drive.google.com/file/d/1ju5EtgwRYN7Y4Nzgj-V1j3eM-LpoMbHr/view?usp=sharing
答案 0 :(得分:0)
因为您已经为python2而非python3安装了pandas。 pip3 install pandas
将为python3安装熊猫。
答案 1 :(得分:0)
您还需要为python3
安装熊猫,这是因为您的计算机上同时装有python2
和python3
。
您可以使用conda或pip来安装熊猫,我对pip很熟悉,因此通过使用pip运行命令:
pip3 install pandas
然后运行python3
从python3
外壳程序中,您应该可以将熊猫作为导入熊猫导入