- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我使用 Ruby v2 和 Rails v4 开发了一个 Rails Web 项目。它在我当前的系统中运行良好,当我尝试在另一台 Linux 机器 (Ubuntu 12.4) 中运行该项目时,出现 Tidy_tds 错误。
此错误在 bundle install
时显示,
错误详情如下
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
/home/action/.rvm/rubies/ruby-2.1.1/bin/ruby extconf.rb
checking for iconv_open() in iconv.h... yes
checking for sybfront.h... no
-----
freetds is missing.
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-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/home/action/.rvm/rubies/ruby-2.1.1/bin/ruby
--enable-lookup
--disable-lookup
--with-iconv-dir
--without-iconv-dir
--with-iconv-include
--without-iconv-include=${iconv-dir}/include
--with-iconv-lib
--without-iconv-lib=${iconv-dir}/lib
--with-freetds-dir
--without-freetds-dir
--with-freetds-include
--without-freetds-include=${freetds-dir}/include
--with-freetds-lib
--without-freetds-lib=${freetds-dir}/lib
extconf failed, exit code 1
Gem files will remain installed in /home/action/.rvm/gems/ruby-2.1.1/gems/tiny_tds-0.6.1 for inspection.
Results logged to /home/action/.rvm/gems/ruby-2.1.1/extensions/x86_64-linux/2.1.0/tiny_tds-0.6.1/gem_make.out
An error occurred while installing tiny_tds (0.6.1), and Bundler cannot continue.
Make sure that `gem install tiny_tds -v '0.6.1'` succeeds before bundling.
我也尝试单独安装 tiny_tds,但我仍然遇到同样的问题
gem install tiny_tds -v '0.6.1'
我的 gem 文件,
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.2'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
gem 'tiny_tds'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
gem 'jquery-ui-rails' # jquery ui
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use sqlserver as the database for Active Record
gem 'activerecord-sqlserver-adapter', :git => 'https://github.com/nextgearcapital/activerecord-sqlserver-adapter.git'
gem "therubyracer"
gem "less-rails"
gem "twitter-bootstrap-rails"
gem 'bootstrap-datepicker-rails'
gem 'will_paginate'
gem 'sqlite3'
gem 'formtastic'
为什么会出现这个错误以及如何解决这个问题。
感谢任何帮助
最佳答案
看起来你没有在这台机器上安装 freetds:
sudo apt-get install freetds-dev
如果您看到 freetds-dev 的详细信息包你会看到它有丢失的文件 sybfront.h
据我所知,freetds
没有 gem,构建 tiny_tds
gem 需要编译它。但是,您应该可以使用 MiniPortile
构建自己的 gem 版本。
您需要从 GitHub 克隆 tiny_tds
,然后为您的环境构建原生 gem,而不是使用普通的 gem install
机制。此过程将包括下载用于编译 gem 的特定版本的 freetds
。
这应该可以解决无法安装 freetds-dev
包的问题,但如果 tiny_tds
gem 将来更新,则确实存在缺点每次都需要重复此过程 - 您不能简单地利用 bundle update
。
需要遵循的步骤很详细here .
关于ruby-on-rails - rails 4 : Error when installing tiny_tds gem?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23593086/
首先声明我不是 Ruby 开发人员。我只是想在 Windows x64 上安装 Redmine。我在这里发现了类似的问题,我稍后会链接到。但由于我不是 Ruby 开发人员,所以我不理解答案,也无法将它
今天,tiny_tds 突然不接受多个execute 并返回: C:\>ruby test_use.rb one two C:/test_use.rb:15:in `execute': Attempt
这与此类似 question .然而,answer发布在那个问题上,对我不起作用。我已经在我的 Mac 上安装了 freetds。我在 GemFile 中指定了以下内容。 gem 'tiny_tds'
我正在尝试设置一个新的 mac,但一直无法编译 tiny_tds。我正在运行 OSX Mojave (10.14.6) 并通过 asdf 安装了 ruby 2.4.5。当我尝试捆绑时,安装 tin
在这里,我试图从 MS-SQL Server 2008 获取数据到我在 Ubuntu 10 上的 Rails 应用程序。但是我无法安装 tiny_tds。我按照 github 上给出的步骤进行操作。但
这个问题让我找到了 this question . 我希望能解决我的问题,那里的几个答案详细说明了一些可以帮助安装的配置参数。这些路径不太适合我,所以我修改了它们并最终得到了这个: gem insta
当我运行时: gem install tiny_tds 输出告诉我需要安装 FreeTDS。接下来,它向我展示了一些配置选项,我可能需要一个选项。选项如下: --with-opt-dir
在数据导入脚本中: client = TinyTds.Client.new(...) insert_str = "INSERT INTO [...] (...) VALUE (...)" cli
错误 $ sudo gem install tiny_tds Building native extensions. This could take a while... ERROR: Error i
关闭。 这个问题不符合 Stack Overflow guidelines 。它目前不接受答案。 这个问题似乎与 a specific programming problem, a softwar
require "rubygems" require "tiny_tds" client = TinyTds::Client.new(:username => 'sa', :password => '
我使用 Ruby v2 和 Rails v4 开发了一个 Rails Web 项目。它在我当前的系统中运行良好,当我尝试在另一台 Linux 机器 (Ubuntu 12.4) 中运行该项目时,出现 T
互联网,我不知道该做什么。升级到 Yosemite 后我无法安装 tiny_tds $ gem install tiny_tds Building native extensions. This c
我正在使用 mac os,我想使用 ruby 驱动程序连接到 sql server。我想使用 tiny_tds,但它给出了缺少 free_tds 的错误,但它已经安装了。怎么能过这个? ~ bre
我们试图让 rails 与 Azure 上的 sqlserver 数据库对话,我们使用 openssl 和 libiconv 安装 freeTDS: ./configure --prefix=/usr
我一直在尝试在 OSX 10.6 的 Macbook 上安装 TinyTDS gem。我成功安装了免费 TDS - 通过以下方式确认它可以正常工作: tsql -H SERVER -p 1433 -U
我正在尝试弄清楚如何从数据库中提取数据,而无需在每个 ruby 文件的顶部放置连接字符串。 我正在通过我正在组装的一个 Sinatra 小应用程序学习 ruby 的基础知识,该应用程序可以从
我的问题 我可以采取哪些万无一失的步骤来 100% 使它正常工作?我需要真正的指导,而不是简单的答案或对过程的模糊概念描述。 让我们深入了解一下。似乎某处存在冲突,并且我在 GitHub 上得到了 g
我是一名优秀的程序员,十分优秀!