无法使用pyinstaller导入页面模块

时间:2020-03-02 06:32:46

标签: exe pyinstaller py2exe

我正在创建简单的python以使用pyinstaller转换exe。

python代码(ch.py​​)

import os
import subprocess
import sys
p = subprocess.Popen([sys.executable, "-E", "-c", "import page"],
                         stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE)
p.communicate()
print(p.returncode)

pyinstaller成功创建了ch.exe。但是出现错误,例如在运行exe时无法导入页面库,因为pyinstaller不会将页面文件夹视为库。在我尝试使用“ paths = c:\ mypro \ page”创建exe后

pyinstaller --paths="c:\\mypro\\page" ch.py

再次遇到相同的错误

预先感谢

0 个答案:

没有答案