Answers for "conda update sklearn"

34

install sklearn

pip install scikit-learn
Posted by: Guest on February-11-2020
1

pip install sklearn specific version

pip uninstall scikit-learn
pip install scikit-learn==0.18.2
Posted by: Guest on September-21-2020
1

conda install sklearn 0.20

conda install scikit-learn=0.20
Posted by: Guest on July-10-2020
0

how to update sklearn using conda

# 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
Posted by: Guest on February-10-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language