Windows 10上的Ruby sqlite3 gem安装问题

时间:2019-02-17 22:29:54

标签: ruby sqlite rubygems

我对红宝石和铁轨很陌生。我正在尝试安装到sqlite3,以尝试教程和出现问题。我在Windows 10上并使用ruby 2.6.1p33 (2019-01-30 revision 66950) [x64-mingw32]

这是我在运行gem install sqlite3-ruby时遇到的安装错误。我也尝试过运行gem install sqlite3 --platform=ruby -- --with-sqlite3-include=c:/sqlite3/include --with-sqlite3-lib=c:/sqlite3/lib

C:/Ruby26-x64/bin/ruby.exe -I C:/Ruby26-x64/lib/ruby/2.6.0 -r ./siteconf20190217-3116-1d59gcv.rb extconf.rb
checking for sqlite3.h... yes
checking for pthread_create() in -lpthread... yes
checking for -ldl... no
checking for dlopen()... no
missing function dlopen
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers.  Check the mkmf.log file for more details.  You may
need configuration options.

Provided configuration options:
    --with-opt-dir
    --without-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=C:/Ruby26-x64/bin/$(RUBY_BASE_NAME)
    --with-sqlcipher
    --without-sqlcipher
    --with-sqlite3-config
    --without-sqlite3-config
    --with-pkg-config
    --without-pkg-config
    --with-sqlcipher
    --without-sqlcipher
    --with-sqlite3-dir
    --without-sqlite3-dir
    --with-sqlite3-include
    --without-sqlite3-include=${sqlite3-dir}/include
    --with-sqlite3-lib
    --without-sqlite3-lib=${sqlite3-dir}/lib
    --with-pthreadlib
    --without-pthreadlib
    --with-dllib
    --without-dllib

To see why this extension failed to compile, please check the mkmf.log which can be found here:

  C:/Ruby26-x64/lib/ruby/gems/2.6.0/extensions/x64-mingw32/2.6.0/sqlite3-1.4.0/mkmf.log

extconf failed, exit code 1

我已经从他们的网站上下载了sqlite3,这是C:\sqlite3\的文件夹结构

sqldiff.exe
sqlite3.exe
sqlite3_analyzer.exe
include\shell.c
include\sqlite3.c
include\sqlite3.h
include\sqlite3ext.h
lib\sqlite3.def
lib\sqlite3.dll

我也已将sqldiff.exe, sqlite3.exe and sqlite3_analyzer.exe复制到C:\Ruby26-x64\bin。 在我的环境变量中,我向C:\sqlite3\添加了PATH,还创建了一个指向sqlite3-dir的新环境变量C:\sqlite3\

有人可以为这个安装问题提供一些帮助吗?

4 个答案:

答案 0 :(得分:1)

在项目Gemfile文件中添加gem 'sqlite3', git: "https://github.com/larskanis/sqlite3-ruby", branch: "add-gemspec"即可。之后,运行bundle install。确保在机器上安装git。这是github link

答案 1 :(得分:1)

这是目前对我有用的东西,它是每个项目的修订; Samiul Alam Anik的回答,但还有一个补充。执行完这些步骤后,您可能会得到一个requires Bundler 2,而借助此GitHub ticketgem update --system可以为我解决。

答案 2 :(得分:0)

为解决所有项目的此问题,我从https://rubygems.org/下载了gem文件并将其保存在本地,并通过cmd安装了MinGW

C:\Sites>ridk exec pacman -S mingw-w64-x86_64-dlfcn

以及

之后的SQLite 3 gem
C:\Sites>gem install --local C:\sqlite3-1.4.0.gem

,它适用于在Sites文件夹中创建的所有下一个项目,如果您需要修复已经创建的项目并尝试在这些行之后再次运行bundle install

我还尝试将SQLite 3文件包含在路径中,但对我也不起作用

答案 3 :(得分:-1)

确保您的计算机上安装了当前的 Ruby 版本,安装 node ja,安装 yarn,更新 npm,更新 gem Ruby。

C:\Users\adilkemo>ruby --version 
ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [x64-mingw32]

C:\Users\adilkemo>gem --version  
3.2.15

C:\Users\adilkemo>node --version  
v16.4.2

C:\Users\adilkemo>yarn --version  
1.22.10

C:\Users\adilkemo>npm --version   
7.18.1

C:\Users\adilkemo>sqlite3 --version  
3.36.0 2021-06-18 18:36:39 5c9a6c06871cb9fe42814af9c039eb6da5427a6ec28f187af7ebfb62eafa66e5

C:\Users\adilkemo>gem install rails 

C:\Users\adilkemo>rails --version  
Rails 6.1.4

C:\Users\adilkemo>cd Desktop  

C:\Users\adilkemo\Desktop>rails new blog  

C:\Users\adilkemo\Desktop>cd blog  

C:\Users\adilkemo\Desktop\blog>bin/rails server - Goodbye!
Exiting
Terminate batch job (Y/N)? y  

C:\Users\adilkemo\Desktop\blog>

enter image description here
https://rubyinstaller.org/
https://guides.rubygems.org/rubygems-basics/
https://nodejs.org/en/
https://classic.yarnpkg.com/en/docs/install/#windows-stable
https://www.sqlite.org/download.html