安装时spree不提供任何主页

spree does not give any homepage when installed

我正在尝试根据本指南设置基本的 spree 主页。 https://guides.spreecommerce.com/developer/getting_started_tutorial.html。我在这里做了以下操作

$ rails new shop #I have ommited the version number 4.2.0<br> 
$ cd shop <br>
$ spree install --auto-accept
$ bundle install 
$ bundle update

此过程运行良好,正在安装大约 103 个 gem。但是当启动服务器时,访问了localhost:3000。我得到的是默认的欢迎登机页面,而不是承诺的 spree 主页,而且当我访问 localhost:3000/admin 时,我得到的是 NO route matches admin error

所以认为这一切都是因为我提到的缺少版本号。

我做了以下

$ rails _4.2.0_ new shop<br>
$ cd shop<br>
$ spree install --auto-accept<br> 
$ bundle install

我收到 jquery gem 版本控制错误,通过明确指定版本号解决了该错误。我收到 sprockets gem 版本错误,我不明白的是我做错了什么吗?或者有解决办法吗?任何指针表示赞赏

完成 spree install --auto-accept 后,我收到一条消息 运行 bundle install 。 我认为这是一条 post 安装消息,所以我正在做捆绑安装和捆绑更新。然后我开始启动服务器,默认的 rails 出现了。因此,在 运行 宁 捆绑安装和捆绑更新 之后,继续执行 spree install --auto-accept. 现在启动服务器。一切都会好起来的