我试图在我的PHP服务器(MAMP)中安装包gphoto2。 我已经在我的电脑上安装了gphoto,它可以工作,但我想在我的php网站上集成gphoto 其实我试试这个:
<?php
$output = shell_exec('wp-content/themes/barberry/script.sh 2>&1');
echo "<pre>";
var_dump($output);
echo "</pre>";
?>
我将此作为回报:
wp-content/themes/barberry/script.sh: line 6: gphoto2: command not found
我还在我的MacOS上安装了brew,但我无法在MAMP上安装gphoto2。 谢谢你!