我正在使用 pyinstaller。在我的脚本中有:
import toml
config = toml.load('config.toml')
我编译了我的脚本:
pyinstaller main.py --onefile --clean --name myApp
但是当我运行它给我的可执行文件时:ModuleNotFoundError: No module named 'toml'
所以我尝试了这个:
pyinstaller main.py --hidden-import toml --onefile --clean --name myApp
现在 pyinstaller 说:ERROR: Hidden import 'toml' not found