jude
jude

Reputation: 360

How to install scikit-learn from github

I noticed that somewhere in the library of scikit-learn there is a bug according to forums and i saw that they github has a developed library for scikit-learn. I am hoping they fixed the bugs there so I want to install scikit-learn on my ubuntu and raspbian os. I want to install the latest version 0.18 scikit-learn for python 2.7. can anybody help me. thank you in advance

Upvotes: 0

Views: 1054

Answers (1)

Chinny84
Chinny84

Reputation: 966

Literally on the readme file here on the scikit-learn git page.

For the latest branch i.e. 0.18x you have to do the following

  • git clone the repo as in the link I have provided or run the following git clone https://github.com/scikit-learn/scikit-learn.git

  • checkout the latest branch with git checkout origin/0.18.X

You should now have the latest and greatest.

Note that this branch may have functions that will break your current scripts that depend on sklearn.

Upvotes: 1

Related Questions