2
1

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 1 year has passed since last update.

pyinstaller + yolo v8

Posted at

課題

Yolo V8で作成したプログラムをPyinstallerを利用し、パッケージする時、下記のようなエラーが発生します。

解決策

私もEXEファイルへのアプリケーション変換中に同様のエラーに直面しましたが、このページにたどり着きました。特に@dh031200さんの提供したアドバイスが非常に有益でした。

今回は、私が発見した別の解決策をご紹介したいと思います。

使用環境としては、Windowsシステム上でpyinstaller, YOLO v8, そしてTkinterを用いています。

ステップ1: 必要なライブラリのインストール

まず最初に、以下のコマンドで必要なライブラリをインストールします。

pip install ultralytics
pip install pyinstaller

ステップ2: Pyinstallerのspecファイルの編集

次に、Pyinstallerのspecファイルに以下のコードを追記します。これはcollect_data_filesを使用して、Ultralyticsライブラリの全てのデータファイルを参照可能にするためのものです。

from PyInstaller.utils.hooks import collect_data_files
import ultralytics

ultra_files = collect_data_files('ultralytics')

a = Analysis(
    ['GUI-yolo-distribution.py'],
    pathex=[],
    binaries=[],
    datas=ultra_files,
    hiddenimports=[],
    hookspath=[],
    hooksconfig={},
    runtime_hooks=[],
    excludes=[],
    win_no_prefer_redirects=False,
    win_private_assemblies=False,
    cipher=block_cipher,
    noarchive=False,
)

ステップ3: specファイルを用いたパッケージング

最後に、以下のコマンドでspecファイルを用いてアプリケーションをパッケージングします。

pyinstaller main.spec

yolo.png

結果

この手順により、私は問題を解決することができました。希望があれば、是非お試しください。

以上が私の手順です。ご参考になれば幸いです。

2
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?