gpt4 book ai didi

ruby-on-rails - 在 Windows 上安装 json gem 时出错

转载 作者:太空宇宙 更新时间:2023-11-03 17:17:24 25 4
gpt4 key购买 nike

我是 ruby​​ on rails 的新手,我正在尝试让我的第一个项目与 git 和 heroku 一起工作。我正在按照 Michael Hartl 的教程进行操作。我本来是想

git push heroku master

但我没有 GemFile.lock,所以我一直在尝试捆绑安装和捆绑更新,但没有任何效果,因为我没有 json 原生 gem。

bundle update

这是返回这个错误的命令,它不是我遗漏了我已经拥有的所有 gem 的全部错误

Installing json (1.7.3) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

"C:/Program Files/ruby-1.9.3/bin/ruby.exe" extconf.rb
creating Makefile

make
Makefile:160: warning: overriding commands for target `C:/Program'
Makefile:153: warning: ignoring old commands for target `C:/Program'
C:/Program Files/ruby-1.9.3/bin/ruby -e "puts 'EXPORTS', 'Init_parser'" > parser-i386
mingw32.def
/bin/sh: C:/Program: No such file or directory
make: *** [parser-i386-mingw32.def] Error 127


Gem files will remain installed in C:/Program Files/ruby-1.9.3/lib/ruby/gems/1.9.1/gems/json-1.7.3 f
or inspection.
Results logged to C:/Program Files/ruby-1.9.3/lib/ruby/gems/1.9.1/gems/json-1.7.3/ext/json/ext/parser/gem_make.out
An error occured while installing json (1.7.3), and Bundler cannot continue.
Make sure that `gem install json -v '1.7.3'` succeeds before bundling.

如果有人知道如何修复我的错误以便我可以继续下一个错误或者我如何获得一个有效的 GemFile.lock,我们将不胜感激。

最佳答案

在您的开发机器上安装 json_pure。这是一个不需要 C 扩展的 json gem 版本(但速度有点慢)。

在 Heroku 上,您应该能够直接使用更快的 json

如果你想在 Windows 上构建 C 扩展,那么你可能想看看这里:
The 'json' native gem requires installed build tools

您可以像这样在 Gemfile 中创建特定于 windows 的部分:

# Common gems
gem 'xyz'
...

# Platform specific gems
platforms :ruby do
gem 'json'
end

platforms :mswin, :mingw do
gem 'json_pure'
end

关于ruby-on-rails - 在 Windows 上安装 json gem 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10906248/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com