所以我在 64 位 Windows 7 上运行,并使用 Pip 和 PyWin32 设置了 Pyinstaller。我有python 2.7。
我用这段代码做了一个简单的hello world程序
print "hello world!"
我将文件放在与 PyInstaller 相同的目录中,并在命令提示符下运行此代码
pyinstaller.py helloWorld.py
然而,当我尝试这样做时,我收到以下错误消息:
Error loading Python DLL: C:\PROGRA~1\PYINST~1.1\build\HELLOW~1\python27.dll (error code 126)
我做错了什么,我该如何解决这个问题?