linux安装 - easysoft/phpsciter GitHub Wiki
Ubuntu 16.04下面手工编译
apt-get install build-essential pkg-config
apt install libgtk-3-dev
git clone https://github.com/longyan/phpsciter.git
cd phpsciter
phpize
./configure
make
make install
php examples/phpsciter-load-frame/index.phpt
Ubuntu下面deb安装包安装
教程中系统的版本是ubuntu 20.04,首先必须要使用apt 安装php7.4 的安装包
sudo apt install php7.4-cli
然后解压deb文件就可以使用了
sudo dpkg -i ./phpsciter_php7.4.3-4ubuntu2.4_am64.deb
验证安装包是否已经被安装
php -m|grep PHPSciter
运行demo
php examples/phpsciter-load-frame/index.phpt
如果出现缺少gtk包的情况请使用apt进行安装
sudo apt install libgtk-3-dev