pyinstaller 导入错误与 runpy

pyinstaller import error with runpy

我有文件 import1.py:

import os
import runpy
filename = r'C:\pyinstallerTest\test.py'
runpy.run_path(filename)

文件 test.py 是:

import matplotlib.pyplot as plt
import numpy as np
from astroML import *
from tkinter import *

t = np.arange(0.0, 2.0, 0.01)
s = 1 + np.sin(2*np.pi*t)
plt.plot(t, s)

plt.xlabel('time (s)')
plt.ylabel('voltage (mV)')
plt.title('About as simple as it gets, folks')
plt.grid(True)
plt.savefig(r"C:\pyinstallerTest\test.png")
plt.show()
print('hello world')

我尝试使用以下命令从 import1.py

创建 exe 文件
pyinstaller --onefile import1.py

import1.exe文件创建成功。但是,当我 运行 import1.exe 文件时,出现以下错误:

Traceback (most recent call last):
  File "import1.py", line 4, in <module>
  File "runpy.py", line 263, in run_path
  File "runpy.py", line 96, in _run_module_code
  File "runpy.py", line 85, in _run_code
  File "C:\pyinstallerTest\test.py", line 1, in <module>
    import matplotlib.pyplot as plt
ImportError: No module named 'matplotlib'
[1828] Failed to execute script import1

这对我来说更多的是学习练习,所以我不会在这里寻找其他更好的做事方式。

PyInstaller 没有看到 matplotlib 所以它在编译时忽略它,因此在 exe 运行时看不到它。尝试将其添加为隐藏导入:

pyinstaller --onefile --hidden-import=modulename import1.py

模块名应该是它所在位置的完整路径。