how to update sklearn using conda

Solutions on MaxInterview for how to update sklearn using conda by the best coders in the world

showing results for - "how to update sklearn using conda"
Ana Sofia
06 Nov 2019
1# Anaconda comes with the conda package manager which is designed to handle these kinds of upgrades
2# Start by updating conda itself to get the most recent package lists:
3conda update conda
4
5# And then install the version of scikit-learn you want
6conda install scikit-learn=0.17
7