Issue
I installed scikit-learn from GitHub a couple of weeks ago:
pip install git+git://github.com/scikit-learn/scikit-learn@master
I went to GitHub and there have been several changes to the master branch since then.
How can I update my local installation of scikit-learn
?
I tried pip install scikit-learn --upgrade
but I got:
Requirement already up-to-date
Cleaning up ...
Solution
pip
searches for the library in the Python package index. Your version is newer than the newest one in there, so pip won't update it.
You'll have to reinstall from Git:
$ pip install git+git://github.com/scikit-learn/scikit-learn@main
Answered By - Blender
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.