我今天遇到了同样的问题。并解决了。我改用 Lubuntu 13.04、RVM 和 Ruby 1.9.3。
可能是你的平台不在rubyracer使用的libv8的支持列表中,gem需要自己编译。
直接来自:https ://github.com/cowboyd/libv8
从 git 获取 libv8 源,编译它并从以下位置构建 gem:
git clone git://github.com/cowboyd/libv8.git
cd libv8
bundle install
bundle exec rake checkout
bundle exec rake compile
bundle exec rake build
安装宝石:
gem install ./pkg/libv8-3.16.14.3.gem
在我的项目文件夹上执行“bundle update”时仍然出现错误,因为 gem 似乎没有被复制到我的 bundle gem 缓存中。
Bundler::GemspecError: Could not read gem at /home/devmachine/.rvm/gems/ruby-1.9.3-p448/cache/libv8-3.16.14.3.gem. It may be corrupted.
An error occurred while installing libv8 (3.16.14.3), and Bundler cannot continue.
Make sure that `gem install libv8 -v '3.16.14.3'` succeeds before bundling.
所以我在再次运行“bundle update”之前将它复制到了这个文件夹:
cp /home/devmachine/Downloads/libv8/pkg/libv8-3.16.14.3.gem /home/devmachine/.rvm/gems/ruby-1.9.3-p448/cache
请记住,在执行编译之前,您应该安装以下软件包:
- 混帐
- git-svn
- libv8-dev
- Python
- 克++
我希望它有所帮助。
- = 更好的解决方案 = -
实际上是RTFM的一个案例。
您不必使用本机扩展构建自己的 gem。您只需要在系统中安装 v8 库即可。之后,您可以将 bundler 配置为使用本机 v8。为此,您应该在系统上安装 V8 引擎。
# Get Google v8 engine from git
git clone git://github.com/v8/v8.git v8 && cd v8
# Install GYP
make dependencies
# I had problems with warnings and strict aliasing. So I ignored and switched them off.
make native werror=no strictaliasing=off
现在您应该可以从系统中使用 v8 了:
bundle config build.libv8 --with-system-v8
在此命令之后,您可以继续使用通常的“捆绑安装”..
- = 建议的解决方案 = -
忘记 v8 并改用 Node.js:
wget http://nodejs.org/dist/node-latest.tar.gz
tar zxvf node-latest.tar.gz
# cd into extracted directory (e.g. cd node-v0.10.14)
make
make install
从您的项目 Gemfile 中删除“therubyracer”依赖项。