How To Update Sklearn Using Conda

[Solved] How To Update Sklearn Using Conda | Whatever - Code Explorer | yomemimo.com
Question : how to update sklearn using conda

Answered by : aman-kumar-verma

# Anaconda comes with the conda package manager which is designed to handle these kinds of upgrades
# Start by updating conda itself to get the most recent package lists:
conda update conda
# And then install the version of scikit-learn you want
conda install scikit-learn=0.17

Source : https://stackoverflow.com/questions/33679938/how-to-upgrade-scikit-learn-package-in-anaconda/33680217 | Last Update : Wed, 17 Feb 21

Answers related to how to update sklearn using conda

Code Explorer Popular Question For Whatever