本文介绍了Jupyter Notebook中的旧sklearn版本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我通过终端更新 sklearn 版本
conda install scikit-learn=0.18
如果我列出conda list scikit-learn
# packages in environment at /Users/Claudia/anaconda:
scikit-learn 0.18.1 np111py27_1
scikit-learn 0.18.1 <pip>
但是如果我在笔记本电脑上运行
but if I run in notebook
print('The scikit-learn version is {}.'.format(sklearn.__version__))
结果是
The scikit-learn version is 0.17.1.
如何在Jupyter Notebook中解决和更新版本?
How can I solve and update also the version in Jupyter Notebook?
推荐答案
要更新Jupyter使用的版本,您需要通过Jupiter界面打开终端
to update the version used by Jupyter you need to open terminal by Jupiter interface
并从此处运行命令
conda update scikit-learn
错误是使用系统终端.
这篇关于Jupyter Notebook中的旧sklearn版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!