关于在win7上安装Ruby On Rails 环境的几点注意

在window下安装RubyOnRails环境须知:

1.需要有Development-Kit,不然会报:unabletoconvertU+00F4fromUTF-8toGBKforlib/mail/multibyte/chars.rb,file‘lib’notfound这些问题

下载地址:https://github.com/oneclick/rubyinstaller/wiki/Development-Kit

安装步骤:

1.ExtractFiles<DEVKIT_INSTALL_DIR>

2.cd<DEVKIT_INSTALL_DIR>

3.rubydk.rbinittogeneratetheconfig.yml

4.editthegeneratedconfig.yml(查看是否包含已安装的ruby,没有则手动添加)

5.rubydk.rbreview

6.rubydk.rbinstall

7.geminstallrdiscount–platform=ruby(这一步是测试是否安装成功)

TemporarilyenhancingPATHtoincludeDevKit…

2.工作目录最好与安装Ruby的目录在同一个盘符里,不然会报:

ArgumentErrordifferentprefix:“c:/”and“D:/Workspace/cloud-lab/app/assets

3.需要安装javascript环境,到nodejs官网下载一个安装

4.如果是有图像的,需要安装ImageMagick环境,mini_magick在window上只支持gem‘mini_magick’,’3.5.0′这个版本

5.安装therubyracer时候,需要制定版本,不然libv8安装不上:gem‘therubyracer’,‘~>0.11.4′,platforms::ruby

相关推荐