I just wanted to send a note regarding the installation of scikit. As you might already know; if we try to install scikit with some command like: "pip install numpy scipy scikit-learn" or via requirements.txt which has:
numpy scipy scikit-learn It raises "from numpy.distutils.core import setup ImportError: No module named numpy.distutils.core"; because of numpy requirement. There was similar issue in scipy which was resolved. [https://github.com/scipy/scipy/pull/453]. For my project I was including all the requirements in requirements.txt file, but was having issues because of the above problem. I adapted the patch for scikit, and was able to fix it. [ https://github.com/abhirk/scikit- learn/commit/635533f2f516fe72b1b12530885cdaf272809197 ] I am not a packaging expert [or familiar with scikit conventions], but just wanted to note in case anyone finds this helpful; [and if it has any cascading effect I failed to notice]. Regards, Ark ------------------------------------------------------------------------------ Get 100% visibility into Java/.NET code with AppDynamics Lite It's a free troubleshooting tool designed for production Get down to code-level detail for bottlenecks, with <2% overhead. Download for free and get started troubleshooting in minutes. http://p.sf.net/sfu/appdyn_d2d_ap2 _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
