How to compile python 3.4.3 script to exe? -
how compile python 3.4.3 script module tkinter , ttk self-executable exe (standalone)? (py2exe, pyinstaller, freeze doesn't work.) suggestions? thank you what is download portable python create file in other language can compiled exe make executable call portable python python file. structure: application_folder # folder in +--my_python_folder # folder python files in | +--my_program.py # python file want start +--portable python 3 # python version use +--program.exe # compiled program the c++ source code: // based on https://msdn.microsoft.com/en-us/library/ms682425%28vs.85%29.aspx #include <windows.h> #include <stdio.h> #include <tchar.h> int _tmain( int argc, tchar *argv[] ) { startupinfo si; process_information pi; // choose between pythonw.exe , python.exe tchar command[] = "\"portable python 3\\app\\pythonw.exe\" \"my_program.py\""; // directory start python progr...