本文共 1817 字,大约阅读时间需要 6 分钟。
ERROR: Error installing json:The 'json' native gem requires installed build tools.
C:\ruby\blog>gem install json -v '1.8.3'
ERROR: Error installing json:The 'json' native gem requires installed build tools.Please update your PATH to include build tools or download the DevKitfrom 'http://rubyinstaller.org/downloads' and follow the instructionsat 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'在 时遇到这个问题,
发生这个错误的原因是没有安装DevKit
加上devkit之后,你的ruby中便具有了一个mingw32的本地编译环境,而且这个本地编译环境是自动调用的。只有在你要安装的gem需要本地编译时,才会调用devkit。
http://rubyinstaller.org/add-ons/devkit
下载DevKit
http://rubyinstaller.org/downloads
安装DevKit
1、运行,解压到一个目录,例如:C:\DevKit
2、打开命令行,切换到这个目录;
3、执行命令:ruby dk.rb init
4、修改config.yml文件
5、执行命令:ruby dk.rb install
安装完DevKit之后,再执行命令安装JSON包:gem install json -v '1.8.3'
安装过程中可能会出现以下问题:
C:\ruby\blog>gem install json -v '1.8.3'ERROR: While executing gem ... (Gem::RemoteFetcher::FetchError) Errno::ECONNABORTED: An established connection was aborted by the software in your host machine. - SSL_connect (https://api.rubygems.org/quick/Marshal.4.8/json-1.8.3.gemspec.rz)这可能是由于网络的原因,多试几次就好了。