加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
install_v3.sh 437 Bytes
一键复制 编辑 原始数据 按行查看 历史
896369042@qq.com 提交于 2018-03-21 10:50 . 2.8.7
#!/bin/sh
#sd安装脚本
set -e
command_exists() {
command -v "$@" > /dev/null 2>&1
}
php_version="7.1.14"
swoole_version="2.1.1"
sd_version="3.1.6"
swoole_configure="--enable-async-redis --enable-openssl --enable-coroutine"
if command_exists yum ; then
curl -o install_os.sh sd.youwoxing.net/install_centos.sh
fi
if command_exists apt ; then
curl -o install_os.sh sd.youwoxing.net/install_ubuntu.sh
fi
source install_os.sh
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化