Is there a py2exe version that's compatible wi

2019-01-17 10:12发布

I am trying to compile my python 3.5 file with the latest py2exe version 0.9.2.2 with the following command:

py -3.5 -m py2exe.build_exe myscript.py

But it reports this:

"run-py3.5-win-amd64.exe" file is not found in the ...lib\site-packages\py2exe\ folder.

Does this mean that py2exe 0.9.2.2 is only compatible up to python 3.4?

7条回答
Ridiculous、
2楼-- · 2019-01-17 11:08

Py2Exe just released Py2Exe for Python 3!

To install on windows do this:

cd C:\Python34\Scripts

Then run:

pip install py2exe

And your done you can now run the normal commands, and if your having trouble here are the docs.

Good Luck :)

查看更多
登录 后发表回答