python 打包成exe Matplotlib 这个包出错,怎么办。

2024-12-04 20:39:32
推荐回答(1个)
回答1:

你是用的pyinstaller吗?

试试:
pip install pyinstaller
cd 文件目录 #在文件目录中把库文件粘贴过来(在IDE中找site-packages,里面有库文件)
pyinstaller -F -w 你的python文件.py --hidden-import 库名字(就是
Matplotlib啦)