gpt4 book ai didi

php - PHP 中带有参数的 Python 脚本

转载 作者:太空宇宙 更新时间:2023-11-03 20:44:17 25 4
gpt4 key购买 nike

我的文件夹中有一个 python 脚本,我从终端运行它,如下所示:

python3 inference.py --model pretrained/photo2monet.pb --input input.jpg --output output.jpg --image_size 256

我希望在 PHP 文件上自动运行此命令。

我尝试过:

$command = escapeshellcmd('python3 inference.py --model pretrained/photo2monet.pb --input input.jpg --output output.jpg --image_size 256');
shell_exec ($command);

但是什么也没发生。它应该生成一个图像。相反,我的命令可以从终端运行。我能做什么?

最佳答案

使用 python3 可执行文件的完整路径名,它不在网络服务器的 $PATH 中。

$command = escapeshellcmd('/usr/local/bin/python3 inference.py --model pretrained/photo2monet.pb --input input.jpg --output output.jpg --image_size 256');

关于php - PHP 中带有参数的 Python 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56695089/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com