Having problems to compile hello-world.py using Nuitka on windows.
The command I am using is:
nuitka --standalone --portable --remove-output --recurse-all --python-version=3.4 hello_world.py
The error is:
WindowsError: [Error 2] The system cannot find the file specified:
File "C:\Users\win_user\Anaconda3\Lib\site-packages\nuitka\build\SingleExe.scons", line 866:
shell = False
File "c:\Python27\lib\subprocess.py", line 709:
errread, errwrite)
File "c:\Python27\lib\subprocess.py", line 957:
startupinfo)
Same code compiles & runs fine on Linux. Same code runs fine in interpreter on windows.
The files mentioned in the error message do actually exist. Any suggestions?
Using Win7. Python 3.4 (Anaconda x64). Using MinGW.