windows下安装ruby devkit_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > windows下安装ruby devkit

windows下安装ruby devkit

 2014/10/21 13:21:48  zhq_zhq  程序员俱乐部  我要评论(0)
  • 摘要:超简单的办法如果你是ruby刚入门,推荐这个方法。如果通过上面方法安装DevKit成功率会比较高,下面这种方法不一定能成。但如果你想折腾,可以来试试下面的手动安装。windows下安装或升级时gem经常会碰到1PleaseupdateyourPATHtoincludebuildtoolsordownloadtheDevKit2from'http://rubyinstaller.org/downloads'andfollowtheinstructions3at'http://github
  • 标签:

超简单的办法

如果你是ruby刚入门,推荐这个方法。


如果通过上面方法安装DevKit成功率会比较高,下面这种方法不一定能成。但如果你想折腾,可以来试试下面的手动安装。

windows下安装或升级时gem经常会碰到
1 Please update your PATH to include build tools or download the DevKit
2 from 'http://rubyinstaller.org/downloads' and follow the instructions
3 at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'

这是因为没有安装DevKit的缘故。

DevKit 是windows平台下编译和使用本地C/C++扩展包的工具。它就是用来模拟Linux平台下的make, gcc, sh来进行编译。注:这个方法目前仅支持通过RubyInstaller安装的Ruby,如果不是建议你重新安装。安装方法:双击下载的7z文件,指定解压路径,路径中不能有空格。如C:\DevKit,这个路径就是<DEVKIT_INSTALL_DIR>。
1 > cd <DEVKIT_INSTALL_DIR>
2 > ruby dk.rb init
3 #生成config.yml,这里会检查将要添加DevKit支持的Ruby列表,只支持通过RubyInstaller安装的Ruby
4 #如果这里列出的Ruby与你的要求不符,可以手动修改
5 > ruby dk.rb review? #检查要添加DevKit支持的Ruby列表是否有误,可以略过
6 > ruby dk.rb install
7 [INFO] Updating convenience notice gem override for 'C:/Ruby187'
8 [INFO] Installing 'C:/Ruby187/lib/ruby/site_ruby/devkit.rb'

检查是否安装成功
1 > gem install rdiscount --platform=ruby
2 Fetching: rdiscount-1.6.8.gem (100%)
3 Temporarily enhancing PATH to include DevKit...
4 Building native extensions.? This could take a while...
5 Successfully installed rdiscount-1.6.8
6 1 gem installed
7 Installing ri documentation for rdiscount-1.6.8...
8 Installing RDoc documentation for rdiscount-1.6.8...

如果能安装rdiscount成功说明安装DevKit成功

?

?

上一篇: 声音的8大惊人用途:竟能烧开水 下一篇: 没有下一篇了!
  • 相关文章
发表评论
用户名: 匿名