I installed cx_Freeze through the MSI installer on my computer running Windows 7. He told me that the installation was successful and running pip install cx_Freeze does not cause anything.
In any case, when I try to run the cxfreeze --version command on the Windows command line, it tells me that the program cannot be found. I'm not even sure if this command should be run on the command line or in some python shell.
Despite the successful installation, there is no cxfreeze.xyz executable file in my file system. But in the python installation folder there is a Scripts\cxfreeze . This file has no extension and cannot be executed on the command line. This is not a binary file, but instead contains the following text:
#!C:\Python\32-bit\3.4\python.exe from cx_Freeze import main main()
How can I run cxfreeze as indicated in their documentation?
source share