I've got some very basic code which works, and I want to turn it into an exe.
Since I'm using Python 3 because it seems so much cleaner than other Python editions, I've not been able to use Py2Exe, so I installed cxfreeze instead.
Once I run cxfreeze with the following command:
cxfreeze "C:\Users\pc user\Documents\Python\First project\Main.py"
It says something about the directory/file not existing. That's about as in-depth as it goes. The exact error is something like "Could not find the path specified"
cxfreeze itself is 'detected' by cmd because I don't get a non-recognised error when I just run "cxfreeze". Both cxfreeze and python are on my PATH environment variable.
Naturally I've triple-checked the directory and it is correct.
I've tried variations of this command, including
python cxfreeze "C:\Users\pc user\Documents\Python\First project\Main.py"
cxfreeze C:\Users\pc user\Documents\Python\First project\Main.py
python cxfreeze C:\Users\pc user\Documents\Python\First project\Main.py
Can anyone bring light to this situation?
cxfreeze.batat the Scripts directory. Before that I had to change the root directory in that file (by default isX:...– joaquin Jan 8 at 0:41C:\Python32\Scripts>cxfreeze.bat "C:\Users\pc user\Documents\First project\Main.py"-->creating directory C:\Python32\Scripts\dist– joaquin Jan 8 at 0:43