在ubuntu中的sklearn安装中找不到任何错误

时间:2019-10-03 17:08:56

标签: python scikit-learn deep-learning ubuntu-18.04

我已经使用命令'sudo apt-get install python-sklearn'安装了scikit-learn。但是我正在收到ModuleNotFoundError。我的安装有什么问题?

import numpy as np
import matplotlib.pyplot as plt
import sklearn
from sklearn import linear_model

下方显示错误-

ModuleNotFoundError追溯(最近一次通话)

<ipython-input-3-413e8e9f65e9> in <module>
      1 import numpy as np
      2 import matplotlib.pyplot as plt
----> 3 import sklearn
      4 from sklearn import linear_model

ModuleNotFoundError:没有名为“ sklearn”的模块

2 个答案:

答案 0 :(得分:0)

您应该通过pip来安装sklearn,意思是pip install scikit-learn

答案 1 :(得分:0)

sklearn模块未安装。

使用:

pip install -U scikit-learn

或conda:

conda install scikit-learn