php – PowerBI CLI节点:没有这样的文件或目录

前端之家收集整理的这篇文章主要介绍了php – PowerBI CLI节点:没有这样的文件或目录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试为PowerBI构建PHP包装器.我在我的本地安装了PowerBI Cli(https://github.com/Microsoft/PowerBI-Cli),当我在终端上运行任何PowerBI Cli命令时,它运行良好.即使我使用_www用户运行命令它也运行良好(sudo -u _www powerbi config)

但是,当我使用shell_exec或Symphony的Process Component(https://symfony.com/doc/current/components/process.html)通过PHP运行它时,我收到以下异常:

env: node: No such file or directory.

我在Mac Sierra上面临这个问题.使用PHP exec()在Linux上运行良好的命令

最佳答案
试试linking,

"ln -s /path/where/command/is stored/ /to/path/where u want to exec/"

有时程序存储在usr / local / bin / program中,因为默认情况下你在usr / bin / program中执行

然后在shell中使用您设置的新路径.

连接示例假设您有命令路径,

/usr/bin/powerbi然后用上面的命令你可以链接新路径usr / powerbi之后你可以在exec或shell命令中使用新路径.

原文链接:https://www.f2er.com/php/440994.html

猜你在找的PHP相关文章