rails4.2 版本,执行 rails new project 后一直卡在 run bundle install 那里 我用的 ruby 版本是 2.1.2
#1 楼 @Rei 已经换成了淘宝镜像
最后得出了这些错误
An error occurred while installing mysql2 (0.3.18), and
Bundler cannot continue.
Make sure that gem install mysql2 -v '0.3.18'
succeeds
before bundling.
run bundle exec spring binstub --all
bundler: command not found: spring
Install missing gem executables with bundle install
2 楼方法在 rails new 的时候貌似没用吧,还是从 rubygems.org 更新。 楼主可以试试:rails new XXX --sikp-bundle,然后进入 project,更改 Gemfile 中的 gem 源为https://ruby.taobao.org, 再 bundle install 试试。
估计是没有安装 mysql
另外,
bundle install
已经习惯性的改为 bundle -V
rails new project 新生成的项目,也可以先把 Gemfile 里的
source 'https://rubygems.org'
改为 source 'http://rubygems.org'