在 php 上安装 libv8

在 php 上安装 libv8

尝试通过命令安装v8js扩展:

sudo pecl install v8js-0.1.5

但在安装结束时我得到:

checking for V8 files in default path... not found
configure: error: Please reinstall the v8 distribution
ERROR: `/tmp/pear/temp/v8js/configure --with-v8js' failed

另外在安装过程中我遇到了一个问题:

Please provide the installation prefix of libv8 [autodetect] :

我该回答什么?

答案1

首先安装 libv8-dev 包。

sudo apt-get install libv8-dev 

pecl 安装程序应该发现路径,但如果没有,则在询问时提供 /usr/lib。

相关内容