我需要在我的代码的ubuntu中创建一个python可执行文件,它具有另一个python类的python依赖。
dbscan.py
class dbscan:
#some code goes here
helloworld.py
import dbscan
from dbscan import *
#again some more code goes here
我正在使用pyinstaller来创建可执行文件,
pyinstaller helloworld.py
如果我使用相同的python程序,它不使用其他python文件的类,它运行得很好,但当我用上面的情况创建可执行文件时,我得到这个错误,当我运行可执行文件
File "<string>", line 36, in <module>
ImportError: No module named QtCore