- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我只是尝试在运行 rails 3.2.5 (ruby 1.8.7) 的服务器上创建一个新的 rails 应用程序,使用 mysql 后端:
rails new myapp -d mysql
目前一切顺利。但是,如果我尝试使用 rake db:create
创建数据库,我会得到:
Could not find gem 'therubyracer (~> 0.12.0) ruby' in the gems available on this machine.
Run `bundle install` to install missing gems.
如果我按照推荐的方式操作(运行 bundle install
),我会得到一个将要使用的 gem 列表(并且似乎已经安装了),然后出现另一个错误:
...
Using ref (1.0.5)
Using sass (3.2.13)
Using sass-rails (3.2.6)
Installing therubyracer (0.12.0) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
/usr/bin/ruby18 extconf.rb
checking for main() in -lpthread... yes
checking for v8.h... no
*** extconf.rb failed ***
所以对我来说,这表明 rake 在错误的位置寻找 v8。错误发布还就如何使用配置选项解决此问题提出了建议:
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=/usr/bin/ruby18
--with-pthreadlib
--without-pthreadlib
--enable-debug
--disable-debug
--with-v8-dir
--without-v8-dir
--with-v8-include
--without-v8-include=${v8-dir}/include
--with-v8-lib
--without-v8-lib=${v8-dir}/lib
/kunden/378731_1150/.gem/ruby/1.8/gems/libv8-3.16.14.3/ext/libv8/location.rb:50:in `configure': You have chosen to use the version of V8 found on your system (Libv8::Location::System::NotFoundError) and *not* the one that is bundle with the libv8 rubygem. However, it could not be located. please make sure you have a version of v8 that is compatible with 3.16.14.3 installed. You may need to special --with-v8-dir options if it is in a non-standard location
看起来我必须像 bundle config --some-option
这样配置 bundle
过程,但哪个选项可以解决问题?我已经尝试了所有与 v8 相关的选项,但都没有用。以 --with-v8-xxx
开头的选项似乎不允许设置本地安装的 v8 lib 的路径(gem list
给我 Using libv8 (3.16.14.3)
并且我可以在本地 .gem
目录中看到该文件夹)。 --without-v8-xxx
也不可用,因为我不知道系统范围的 v8 库的位置(没有搜索服务器的权限)。
我该如何解决我的问题?
谢谢
好的,看来我已经能够继续进行了。调用像 RUBYOPT=-rrubygems gem install libv8
这样的安装可以说服 extconf.rb 在我的本地 gem 中而不是在系统位置中查找 v8.h。但是,我还没有:
ERROR: Error installing therubyracer:
ERROR: Failed to build gem native extension.
/usr/bin/ruby18 extconf.rb
checking for main() in -lpthread... yes
*** extconf.rb failed ***
...及以后:
/kunden/378731_1150/.gem/ruby/1.8/gems/libv8-3.16.14.3/ext/libv8/location.rb:15:in `initialize': No such file or directory - /kunden/378731_1150/.gem/ruby/1.8/gems/libv8-3.16.14.3/ext/libv8/.location.yml (Errno::ENOENT)
from /kunden/378731_1150/.gem/ruby/1.8/gems/libv8-3.16.14.3/ext/libv8/location.rb:15:in `open'
from /kunden/378731_1150/.gem/ruby/1.8/gems/libv8-3.16.14.3/ext/libv8/location.rb:15:in `load!'
from /kunden/378731_1150/.gem/ruby/1.8/gems/libv8-3.16.14.3/lib/libv8.rb:6:in `configure_makefile'
from extconf.rb:32
错误发布还为我提供了几个我可以使用的选项,但我完全不明白是什么导致了错误。
有什么想法吗?
谢谢
最佳答案
您可以使用 bundle config
将配置标志传递给您的 gem,如下所示
bundle config build.libv8 --without-v8-lib=/path/to/lib
通过运行 bundle help config
查看 bundle config 手册页以获取更多信息
更新:从您收到的错误消息来看,似乎是在寻找系统的 v8 时正在构建 libv8 gem(不确定为什么这是默认设置).幸运的是,gem 与 v8 源代码 bundle 在一起,但您需要明确告诉它使用它,就像这样
bundle config build.libv8 --without-system-v8
关于ruby-on-rails - rails : how to use options correctly for bundle install,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21141657/
这个问题已经有答案了: Difference between $Bundle install and $Bundle update (2 个回答) 已关闭 9 年前。 bundle 之间有什么区别,
我正在尝试加载 Nib ,但不断收到以下错误: -[NSViewController initWithCoder:] could not instantiate an NSViewController
bundle有什么区别& bundler命令? bundle有什么区别& bundle install ? 如果没有区别,为什么有多个命令做同样的事情? 最佳答案 可执行文件 bundle & bun
我们有托管在应用程序中的单元测试。要加载测试资源,我们使用:Bundle(for: TestClass.self).path(forResource: "some-file", ofType: "js
我刚刚克隆了一个新的 repo 并尝试运行 bundle install但出现以下错误 Fetching gem metadata from https://abcderepos.net/api/ge
我添加了一个共享框架来在应用程序和 watch 扩展之间共享代码。后来我删除了共享框架,因为它会导致很多问题。我可以 build 并在 iphone 上运行我的应用程序并观看。然而,当我提交到应用商店
这个问题有点类似于 this one ,但不完全是。我有一个 C# 游戏引擎,我正在与一些想要使用我的引擎的人一起工作。最初我设计了引擎,以便所有 Assets 都是外部的——非程序员可以创建艺术、音
我正在尝试使用 OSGi 实现客户端-服务器模型。服务器应用程序是在计算机中运行的 OSGi 框架,客户端应用程序远程连接到其控制台并通过 Java 套接字发送命令并接收正确的响应。每个客户端应用程序
我目前正在将我的 Angular 2 应用程序与 WebPack bundle 在一起。我们仍在快速循环,因此我们不想在构建和应用程序加载过程中增加延迟,而是希望包括很少更改的 Angular 2 U
基本上,我有一个捆绑软件,经常在其他 View 中使用,加上其他js文件,因此我可以在保留其顺序的同时将这些文件添加到现有捆绑软件中吗? 最佳答案 我到处都在查找它,但找不到将两个捆绑软件合并在一起的
我有一个大约 12GB 的巨大 mercurial 存储库。我需要在另一台机器上克隆它,但是从网络中提取它需要花费很多时间。当我尝试将所有变更集 bundle 到一个 bundle 文件中时,文件的大
我可以使用 Sonata User Bundle 将 FOS 包集成到 sonata Admin 包中。我的登录功能正常。现在我想添加 FOSUserBundle 中的更改密码等功能到 sonata
如果我检查使用 angular-cli 创建的 angular 2 项目的 index.html 文件,我可以看到该页面仅包含 dist 文件夹中的 3 个文件: inline.bundle.js v
我从程序包管理器http://localhost:4502/crx/packmgr/index.jsp中从正在运行的AEM实例下载了一个zip文件。提取后的zip文件包含jcr_root和META-I
已经提出了有关捆绑名称和捆绑显示名称的类似问题,例如: What's the difference between "bundle display name" and "bundle name" in
我正在尝试在 iTunes 上上传我的应用程序。为此,我创建了一个应用程序 ID 并保留了一个包标识符。在我的项目中,我更改了 info.plist 文件中的包标识符。但是,当我尝试在 itunes
我想从 OSGI 包启动 OSGI 包。正如您所看到的,此代码通过从目录部署它来启动 bundle : private void installStartBundle(BundleContext bc
所以这真的让我头疼,我终于放弃了,在这里发表了问题。我正在尝试更新iTune商店中的一个客户端应用程序,并且在上传到App Store时遇到以下错误。 因此,我已经尝试通过两次使用包sid id创建新
我在 typescript 中使用 aurelia,我想避免使用像这样的相对导入路径: import { DialogBox } from '../../resources/elements/dial
有什么区别 ResourceBundle.getBundle("Bundle") 还有这个 ResourceBundle.getBundle("/Bundle") 最佳答案 来自the Java do
我是一名优秀的程序员,十分优秀!