On 11/7/2014 10:16 AM, Anurag Sharma wrote:
> I am still getting below error when running smoke on the trunk 
>

<snip>

> BUILD FAILED
> C:\work\trunk\build.xml:392: Execute failed: java.io.IOException:
> Cannot run program "python3.2": CreateProcess error=2, The system
> cannot find the file specified

<snip>

> ---The file still exists
> $ where python3.2
> C:\Program Files (x86)\Python34\python3.2.exe

That sounds like the PATH that is getting used may not include the
location of that executable.

Can you temporarily add this to the build.xml and then run "ant foobar"
so your path variable gets output?

  <target name="foobar" description="Echo the path for visibility">
    <property environment="env"/>
    <echo message="PATH: ${env.PATH}" />
    <echo message="path: ${env.path}" />
    <echo message="Path: ${env.Path}" />
  </target>

If the environment variable is correct in that output, then I have no
idea what might be wrong.  If you open a command prompt and type
"python3.2 --version" ... does it work and give you the version?

Thanks,
Shawn


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to