2012/1/24 Blake Visin <[email protected]>: > I installed it using: sudo pip install -U scikit-learn > pip freeze returns: > > scikit-learn==0.10 > numpy==1.6.1 > scipy==0.9.0
Alright, can you try to build the master and check whether you can reproduce the test failure? git clone https://github.com/scikit-learn/scikit-learn.git cd scikit-learn python setup.py build_ext -i nosetests sklearn If all tests pass you can then install this locally with: sudo python setup.py install or alternatively in "editable" mode: sudo pip install -e . -- Olivier http://twitter.com/ogrisel - http://github.com/ogrisel ------------------------------------------------------------------------------ Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-d2d _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
