Successful resolution of various problems pyinstaller generate exe missing packages

Successful resolution of various problems pyinstaller generate exe missing packages

 

 

table of Contents

Solve the problem

Solution


 

 

Solve the problem

Successful resolution of various problems pyinstaller generate exe missing packages

 

 

Solution


The missing packet path, such as yolo3 custom module can not be found in the head of the main file adding the following code

import sys
sys.path.append(r"F:\Program Files\Python\Python36\Lib\site-packages\keras_yolo3\keras-yolo3") #添加自定义模块的路径

 

 

Guess you like

Origin blog.csdn.net/qq_41185868/article/details/80857579