How to install pandas from pip on windows cmd?

前端 未结 8 1079
情歌与酒
情歌与酒 2021-01-30 13:43

I am trying to install pandas using pip to run some pandas-based Python programs. I already installed pip. I tried googling and SO\'ing but didn\'t find a solution to this error

8条回答
  •  遥遥无期
    2021-01-30 13:54

    Please Ensure you are using a virtualEnv this is how :

    virtualenv -p python3 envname
    
    source env/bin/activate
    pip install pandas
    

    on windows you have to add scripts exe in the CLASSPATH in order to use pip command

    C:\Python34\Scripts\pip3.exe
    

    i suggest you to use MINGW he can gives you a better environment to work with python

提交回复
热议问题