pythonで学習機能を作成するにあたり'sklearn'のモジュールがないとエラーがでてきています。
下記に示した通り'sklearn'はインストールできてると思うのですが、どこに原因がありますか?
過去の投稿では、再インストールすれば改善するという回答がありましたが、改善いたしませんでした。
================= RESTART: C:/Users/user/Desktop/digitsData1.py ================
Traceback (most recent call last):
File "C:/Users/user/Desktop/digitsData1.py", line 1, in <module>
import sklearn.datasets
ModuleNotFoundError: No module named 'sklearn'
scikit-learnがインストールされていると確認される画面
C:\WINDOWS\system32>pip install scikit-learn
Requirement already satisfied: scikit-learn in c:\users\user\appdata\local\programs\python\python36\lib\site-packages (0.23.2)
Requirement already satisfied: scipy>=0.19.1 in c:\users\user\appdata\local\programs\python\python36\lib\site-packages (from scikit-learn) (1.5.4)
Requirement already satisfied: numpy>=1.13.3 in c:\users\user\appdata\local\programs\python\python36\lib\site-packages (from scikit-learn) (1.19.4)
Requirement already satisfied: threadpoolctl>=2.0.0 in c:\users\user\appdata\local\programs\python\python36\lib\site-packages (from scikit-learn) (2.1.0)
Requirement already satisfi
回答1件
あなたの回答
tips
プレビュー