Unable to install pandas for python 2.7 on windows

Sorry if this was already answered somewhere, I could not find the answer.

I installed python 2.7.3 on a Windows 7 computer. Then I downloaded the pandas -0.10.1.win-amd64-py2.7.exe file and tried to install it. I went through the first window, but then it indicates that "Python 2.7 is required, which was not found in the registry."

Then I get the opportunity to put the path in find python, but I can't get it to work.

How can i fix this? Sorry for the stupid question.

Thanks. ~ Kututo

+4
source share
3 answers

I ran into the same problem. Here is what worked

  • Modified for PATH to include C: \ Python27; C: \ Python27 \ Lib \ site-packages \; C: \ Python27 \ Scripts \;
  • delete 64 bit number and pandas
  • install 32win 2.7 numpy and pandas
  • I also needed to install dateutil and pytz
  • pandas and numpy work fine operation operation
+2
source

After you have installed the python check to determine if the appropriate path variables are set, at the command prompt, enter the following:

echo %PATH%

if you do not see something like:

C:\Python27;C:\Python27\Scripts

At the output (possibly with lots of other paths), enter the following:

set PATH=%PATH%;C:\\Python27\\;C:\\Python27\Scripts

Then try installing the 32-bit pandas executable.

0
source

You should try distributing anaconda for windows. It is free, comes with all the package you will ever need, and with one click.

http://continuum.io/downloads.html

0
source

All Articles