如何在 PyInstaller 命令列中增加OpenVINO依存性,從 OpenVINO python 腳本產生功能.exe 檔案。
- 執行此命令列以從 OpenVINO python 腳本建立 build.exe 檔案:
pyinstaller --onefile --add-data "D:\person-detection-retail-0013.xml;." Social_Distancing_MQTT.py - 執行產生的 .exe,並收到一個未發生任何情況的空白頁面。
在 p要staller 命令列中, 提供 iecore () 運作的依存檔案。在此命令列中,plugins.xml 可協助樣品載入所需的外掛程式。
pyinstaller --onefile --add-data "C:\Program Files (x86)\IntelSWTools\openvino_2020.3.194\deployment_tools\inference_engine\bin\intel64\Release\plugins.xml;." demo_sample.py
在執行產生的 .exe 檔案之前,先來源OpenVINO環境變數。