Python3 and pandas

前端 未结 6 1600
無奈伤痛
無奈伤痛 2020-12-31 13:31

I have checked some other SO answers and googled somewhat extensively and cannot seem to find someone who has asked/answered this:

I am running Ubuntu 12.04. I have

6条回答
  •  温柔的废话
    2020-12-31 14:26

    I use MacOSx and I manage to install it using:

    brew install python3
    sudo pip3 install --upgrade pip
    pip3 install pandas
    

    Check the installation using:

    $python3
    >>>import pandas as pd
    >>>exit()
    

提交回复
热议问题