📜  如何使用 conda 更新 sklearn - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:05.824000             🧑  作者: Mango

代码示例1
# 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