如何安装resin软件?
- 内容介绍
- 文章标签
- 相关推荐
本文共计227个文字,预计阅读时间需要1分钟。
安装Resin步骤如下:
1. 下载Resin安装包:`wget http://www.caucho.com/download/resin-4.0.27.tar.gz`
2.解压安装包:`tar -xvf resin-4.0.27.tar.gz`
3.创建安装目录:`mkdir -p /usr/local/resin`
4.移动解压后的文件到安装目录:`mv resin-4.0.27 /usr/local/resin`
5.配置安装路径:`./configure --prefix=/usr/local/resin`
6.编译安装:`make` 和 `make install`
7.设置环境变量:`export RESIN_HOME=/usr/local/resin`
resin安装.txt下载:wget www.caucho.com/download/resin-4.0.27.tar.gz tar -xvf resin-4.0.27.tar.gz mkdir -p /usr/local/resin mv resin-4.0.27 /usr/local/resin ./configure --prefix=/usr/local/resin \ make && make install RESIN_HOME=/usr/local/resin PATH=$RESIN_HOME/bin:$PATH export RESIN_HOME PATH 错误 checking for gcc... no checking for cc... no checking for cl.exe... no configure: error: in `/Users/durrantm/.rvm/src/ruby-1.9.2-p290': configure: error: no acceptable C compiler found in $PATH yum -y install gcc openssl-devel
本文共计227个文字,预计阅读时间需要1分钟。
安装Resin步骤如下:
1. 下载Resin安装包:`wget http://www.caucho.com/download/resin-4.0.27.tar.gz`
2.解压安装包:`tar -xvf resin-4.0.27.tar.gz`
3.创建安装目录:`mkdir -p /usr/local/resin`
4.移动解压后的文件到安装目录:`mv resin-4.0.27 /usr/local/resin`
5.配置安装路径:`./configure --prefix=/usr/local/resin`
6.编译安装:`make` 和 `make install`
7.设置环境变量:`export RESIN_HOME=/usr/local/resin`
resin安装.txt下载:wget www.caucho.com/download/resin-4.0.27.tar.gz tar -xvf resin-4.0.27.tar.gz mkdir -p /usr/local/resin mv resin-4.0.27 /usr/local/resin ./configure --prefix=/usr/local/resin \ make && make install RESIN_HOME=/usr/local/resin PATH=$RESIN_HOME/bin:$PATH export RESIN_HOME PATH 错误 checking for gcc... no checking for cc... no checking for cl.exe... no configure: error: in `/Users/durrantm/.rvm/src/ruby-1.9.2-p290': configure: error: no acceptable C compiler found in $PATH yum -y install gcc openssl-devel

