Coder-Spirit / Jupyter-PHP-Installer

An installer for Jupyter-PHP
MIT License
44 stars 20 forks source link

[建议]使用说明中应该声明所需要的特殊函数 #23

Open beJuvenile opened 4 years ago

beJuvenile commented 4 years ago

在安装的时候一直报 Unable to find the composer executable. 各种依赖也都安装好了,就是安装不成功 最后没办法只能看源码个来查找问题,终于找到问题了 在 src/System/UnixSystem.php 中,第40行 if (!function_exists('exec')) { 使用了被禁用的函数,在 php.ini 中打开这个函数就可以安装成功了

tina4stack commented 3 years ago

On some PHP configurations "exec" is blocked by default as being dangerous, I'm not sure this really an issue.