Skip to content Skip to sidebar Skip to footer

Compiling With Python 3.3

Let me start by saying I have only very recently started programming. I don't know how to use the cx_freeze script. I don't know how to make the word 'python' work in commandline.

Solution 1:

Unfortunately, cx_freeze is the only way to do it as far as I can tell.

Perhaps you are just having bad luck with cx_freeze. Try this in a .bat file.

@echo off
<pythonpath>\python <pythonpath>\scripts\cxfreeze <script.pyfile>
exit

Python path is most likely C:\python33.

Post a Comment for "Compiling With Python 3.3"