Problems compiling hello-world.py using Nuitka on windows.
The command I use is:
nuitka --standalone --portable --remove-output --recurse-all --python-version=3.4 hello_world.py
Mistake:
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)
The same code compiles and works fine on Linux. The same code works fine in the windows interpreter.
The files mentioned in the error message do exist. Any suggestions?
Using Win7. Python 3.4 (Anaconda x64). Using MinGW.
source
share