为什么shell_exec没有看到路径环境变量

时间:2015-04-20 20:44:24

标签: python shell

作品:

shell_exec('c:\python27\python.exe command.py'); 

在shell中工作:

python.exe command.py  

不能工作:

shell_exec('python.exe command.py');

操作系统是Windows 7.这适用于debian和其他Windows 7计算机,但在我的计算机上它并没有。可能是什么原因?

1 个答案:

答案 0 :(得分:0)

从用户帐户python运行命令行时,路径变量中设置了路径。

如果它不起作用,则表示webserver user没有设置它。检查此thread如何设置PATH变量apache 2。