Using easy_install with sklearn-pandas

I am trying to install sklearn-pandas.

In my attempt:

easy_install sklearn-pandas 

I get the result:

The package setup script tried to modify files on your system that were not in the EasyInstall build area and were interrupted.

This package cannot be safely installed using EasyInstall, and cannot support alternative installation locations, even if you run its script setup manually. Please inform the author of the package and EasyInstall to find out if a fix or workaround is available.

I'm on Windows 7 (I admit!) Using Python 2.7.3

This is the first time I have received such an error. Possible ideas that I have studied are simpler solutions:

The authors did not write this package for installation using easy_install. I have a problem with the file resolution (?). There are some problems with the dependencies.

If anyone ever got this error or had any idea about it, please let me know! Thank you so much.

+7
python easy-install sklearn-pandas
source share
1 answer

Do not use easy_install , use pip!

(To install pip, follow this https://stackoverflow.com/a/412960/ ).

In addition, you will probably need a compiler, development tools and header files for Python (this is a whole "black worm bag in Windows").

Assuming all is well, now you can

 pip install sklearn-pandas 
+1
source share

All Articles