欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Ubuntu上搭建ROR环境笔记

程序员文章站 2024-02-03 12:48:34
...

Ubuntu上搭建ROR的运行环境时,按照robbin的文章做下来大体上比较顺利,中间安装lighttpd时出现了一点小问题,解决方法如下:
安装lighttpd前需要先安装pcre和libbz2-dev,否则configure时会失败:
tar zxvf pcre-7.9.tar.gz
cd pcre-7.9
./configure –prefix=/usr/local CFLAGS=-O1   #最后的参数是大写字母O和数字1,不是数字0和1
make && make install
apt-get install libbz2-dev

 

=========================
网上还有人提到相关问题:
http://blog.csdn.net/Joey_ZengChen/archive/2008/11/09/3260165.aspx
出现configure: error: C compiler cannot create executables … 安装sudo apt-get install libc6-dev.
出现configure: error: configure: error: pcre-config not found … 安装sudo apt-get install libpcre3-dev
出现configure: error: zlib-headers and/or libs where not found …  安装sudo apt-get install zlib1g-dev
出现configure: error: bzip2-headers and/or libs where not found … 安装sudo apt-get install libbz2-dev

完整的安装ROR运行环境除了robbin的 在Linux平台上安装和配置Ruby on Rails详解

还有一些也比较详尽:

Ubuntu 8.04部署lighttpd+ROR+MySQL实践
Install Ruby Rails Lighttpd MySQL on Ubuntu or FreeBSD