23

我正在尝试安装 puma gem,但是当我运行时

gem install puma

我收到此错误消息:

Temporarily enhancing PATH to include DevKit
Building native extensions.  This could take a while...
ERROR:  Error installing puma:
        ERROR: Failed to build gem native extension.

    C:/Ruby193/bin/ruby.exe extconf.rb
creating Makefile

make                                                
generating puma_http11-i386-mingw32.def                              
compiling http11_parser.c       
ext/http11/http11_parser.rl: In function 'puma_parser_execute':  
ext/http11/http11_parser.rl:111:3: warning: comparison between signed and unsigned integer   expressions    
compiling io_buffer.c   
io_buffer.c: In function 'buf_to_str':             
io_buffer.c:119:3: warning: pointer targets in passing argument 1 of 'rb_str_new'      differ in signedness             
c:/Ruby193/include/ruby-1.9.1/ruby/intern.h:653:7: note: expected 'const char *' but argument is of type 'uint8_t *'                    
compiling mini_ssl.c                                         
In file included from mini_ssl.c:3:0:                                        
c:/Ruby193/include/ruby-1.9.1/ruby/backward/rubyio.h:2:2: warning: #warning use "ruby/io.h" instead of "rubyio.h"              
mini_ssl.c:4:25: fatal error: openssl/bio.h: No such file or directory               
compilation terminated.                     
make: *** [mini_ssl.o] Error 1             

Gem files will remain installed in C:/Ruby193/lib/ruby/gems/1.9.1/gems/puma-2.6.0 for inspection.
Results logged to C:/Ruby193/lib/ruby/gems/1.9.1/gems/puma-2.6.0/ext/puma_http11/gem_make.out

添加gem 'puma'到我的 Gemfile 并运行bundle install不是一种选择,因为这对任何 gem 都不起作用,并给我一条错误消息(这是一个单独的问题,我已经用我用过的其他 gem 规避了这个问题通过gem install)安装它们。

4

4 回答 4

15

遇到了同样的问题。

sudo apt-get install libssl-dev

为我修好了。

于 2014-03-25T21:54:02.293 回答
12

bundle update我之前跑过bundle install,这为我解决了这个问题。

我不确定这是否是唯一有帮助的,因为我在此之前手动更新了 puma,使用以下步骤:

  1. 通过运行检查正在使用哪个版本的 openssl Rubyruby -v -ropenssl -e "puts OpenSSL::OPENSSL_VERSION"
  2. 从http://packages.openknapsack.org/openssl/openssl-1.0.0o-x86-windows.tar.lzma下载了正确的 openssl 版本 (从https://github.com/hicknhack-software/rails-获取链接disco/wiki/Installing-puma-on-windows并根据 #1 的输出对其进行编辑)。
  3. 使用http://www.7-zip.org将 openssl 提取到 C:\RailsInstaller\openssl
  4. gem install puma -- --with-opt-dir=C:/RailsInstaller/openssl
于 2015-02-07T22:45:26.243 回答
6

想出了 puma bundle 的解决方案。遵循https://github.com/hicknhack-software/rails-disco/wiki/Installing-puma-on-windows的指示

首先你需要下载:

  • DevKit与您的 ruby​​ 版本兼容
  • OpenSSL开发人员包(包含头文件和二进制文件)

接着:

  • 安装 DevKit,例如在c:\devkit
  • 解压 OpenSSL 包,例如c:\openssl(使用 7Zip 或 PeaZip)
  • 您需要将 ddls 从 bin 目录 (libeay32.dllssleay32.dll) 复制到 ruby​​/bin 目录。
  • 打开一个 Windows 控制台
  • 初始化 DevKit 构建环境:(c:\devkit\devkitvars.bat除了这里,我在命令提示符中使用了这个ruby dk.rb init:)

现在可以使用 OpenSSL 包安装 puma gem:

gem install puma -- --with-opt-dir=c:\openssl
于 2015-01-31T23:29:45.687 回答
3

我认为您遇到了问题 #430 https://github.com/puma/puma/issues/430

重新安装 Ruby 可能会对您有所帮助,并在 GitHub 上关闭了此问题。

于 2014-02-08T19:27:06.597 回答