前提・実現したいこと
「Python1年生」の第5章のLESSON23で機械学習アプリを作っているのですが、
「ModuleNotFoundError: No module named 'sklearn'」のエラーが出て先に進めません。
発生している問題・エラーメッセージ
Traceback (most recent call last):
File "/Users/marumaru/Desktop/digitsData1.py", line 1, in <module>
import sklearn.datasets
ModuleNotFoundError: No module named 'sklearn'
該当のソースコード
import sklearn.datasets
digits = sklearn.datasets.load_digits()
print("データの個数=",len(digits.images))
print("画像データ=",digits.images[0])
print("何の数字か=",digits.target[0])
試したこと
ターミナルから下記4点をインストール、
下記バージョンでインストール出来ていることをターミナルから確認出来ております。
・numpy 1.20.3
・scipy 1.7.1
・scikit-learn 0.24.2
・matplotlib 3.4.3
あなたの回答
tips
プレビュー