python Call to external program results in [Error 193] %1 is not a valid Win32 application

前端 未结 3 1974
后悔当初
后悔当初 2020-12-07 01:20

I am writing a GUI front end that after it does a bunch of validation will execute a series of already existing vbscript .wsf files.

My problem is when I try to ex

3条回答
  •  忘掉有多难
    2020-12-07 01:52

    Do you have the 64-bit version of Python installed?

    I got the same kind of error when I was trying to do a ctype call to a (32-bit) dll running Python 2.7 (64-bit). When I changed to the 32-bit version of Python, the error disappeared and things started working! Perhaps you are having the same problem?

    I suppose in Win64, a 64-bit process must be all 64-bit :)

提交回复
热议问题