Why not login to Qiita and try out its useful features?

We'll deliver articles that match you.

You can read useful information later.

2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Pyinstaller でsklearnモジュールが入ると動作しない(exeファイルが起動しない問題)

Posted at

<要約>
scikit-learn==0.24.1 python 3.8.9 の環境下で作成したプログラムを
pyinstaller==4.3 でEXE化しようとしました。

exeは出来るのですが、プログラムが起動しないという状況にありました。

状況確認の結果2点問題がありました

1)exe化時にPower shellで
warningでsklearn.neighbors.typedefs が not found 
と出力されていました。

  1. power shell でexeファイルを起動すると、
    ModuleNotFoundError: No module named 'sklearn.utils._weight_vector'
    と出力されていました。

改善は下記2点を実行して解決しました。その結果 exeファイルは予定通り起動しました。

1)の問題は
Lib\site-packages_pyinstaller_hooks_contrib\hooks\stdhooks\hook-sklearn.metrics.cluster.py
を訂正する事で改善しました。
こちらは、リンクを参照ください。
https://qiita.com/niwataka/items/7712c38d287b50479cd4

2)の問題はpyinstaller 時に
pyinstaller ****.py --hidden-import=sklearn.utils._weight_vector
とhidden importで事前にimportする事で解決しました。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?