I'm trying to have Jenkins job install python for me and then execute the script with Python Plugin.
So far I get the python and install it just fine, I also set the environmental variable for python, but plugin won't start:
The system cannot find the file specified FATAL: command execution failed java.io.IOException: Cannot run program "python" (in directory "C:\Jenkins\workspace\install and configure python"): CreateProcess error=2, The system cannot find the file specified
As far as I understand, that this is happening because python.exe is not in the PATH. So I've tried:
1) add it to PATH within batch -FAILED
2) Add to PATH variable within job to "Prepare an environment for the run" with Environment Injector Plugin -FAILED
So my guess is that I have to reset the java.library.path of the Node or restart the Jenkins slave agent.
QUESTION: Any ideas how it could be done?
Here is what I have so far as a "Windows batch command" for python installation:
::verify installation is needed
python --version
if %errorlevel% EQU 0 EXIT 0
:: get the wget utility
cscript.exe .\web\vbs\download-wget.vbs
::get python 27 from server
wget.exe --no-check-certificate https://qaa.myserver.com/public/python27/python-2.7.3.msi
::install python
msiexec /i python-2.7.3.msi /qn TARGETDIR=c:\Python27
::because of the stupid bug https://issues.jenkins-ci.org/browse/JENKINS-3425
set temppath=%PATH:"=%
setx PATH "%temppath%" /m
After this is I have 2-nd build step via Python plugin print "Hello, World"
python some.py- doesn't matter where the python is. Does it make sense? – Alex Okrushko Sep 7 '12 at 16:50