ImportError: No module named pandas

前端 未结 5 701
暖寄归人
暖寄归人 2020-12-04 14:03

I am trying to write a code in python to fetch twitter data i am not getting error for twython. But i am getting error for pandas.

I have installed pandas using pip

5条回答
  •  遥遥无期
    2020-12-04 14:39

    When I try to build docker image zeppelin-highcharts, I find that the base image openjdk:8 also does not have pandas installed. I solved it with this steps.

    curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python
    pip install pandas
    

    I refered what-is-the-official-preferred-way-to-install-pip-and-virtualenv-systemwide

提交回复
热议问题