Rails环境搭建—以Mac系统为例

1. 安装 Xcode


1.1 AppSotre搜索安装Xcode

1.2 首次执行,Xcode 会要求同意“使用者协议”,选择 Agree


2. 安装 Command Line Tools


2.1 在终端输入

xcode-select --install


2.2 如何确定已安装好?终端输入

xcode-select -p

显示出: /Applications/Xcode.app/Contents/Developer,即是成功安装!


3. 安装Homebrew


3.1 终端输入

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"


4. 安装Git


4.1 终端输入

brew install git


4.2 验证是否安装成功

git --version

会显示:git version 2.9.0(数字依照各版本可能会不同)


5. 安装 ImageMagick


5.1 终端输入

brew install imagemagick


6. 安装 PostgreSQL


6.1 终端输入

brew install postgresql

brew services start postgresql


7. 安装 RVM


7.1 终端输入

\curl -sSL https://get.rvm.io | bash -s stable

source ~/.rvm/scripts/rvm

brew install libxml2


8. 安装 Ruby


8.1 终端输入

rvm install 2.3.1

rvm use 2.3.1 --default

gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/  #换gem源


9. 安装 Rails


9.1 在终端输入

gem update --system  #gem 升级

xcode-select --install  #xcode升级

gem install rails -v 5.0.0


10. 创建一个Rails项目并启动


10.1 在终端输入

rails new project-name


10.2 启动项目

cd project-name

bundle install

rails s 


10.3 在浏览器输入localhost:3000即可看到Rails默认页面



Rails环境搭建—以Mac系统为例_第1张图片
localhost:3000

你可能感兴趣的:(Rails环境搭建—以Mac系统为例)