【发布时间】:2020-06-10 22:49:18
【问题描述】:
目标
使用 Jekyll 启动 Github 页面。我正在关注Github Pages docs。
问题
执行时:
bundle exec jekyll 3.8.7 new .
返回如下错误:
fatal: 'jekyll 3.8.7' could not be found. You may need to install the jekyll-3.8.7 gem or a related gem to be able to use this subcommand..
还要注意 (a) Jekyll 3.8.7 是 current dependency version for Github Pages 和 (b) 如果我尝试 Jekyll 4.1.0 会返回相同的错误。
上下文
我尝试了this SO post 中的建议——$ bundle init、$ bundle add jekyll——但这并没有解决我的问题。
系统详情:
$ which ruby
/Users/vishrutarya/.rbenv/shims/ruby
$ ruby -v
ruby 2.7.1p83 (2020-03-31 revision a0c7c23c9c) [x86_64-darwin19]
$ jekyll -v
jekyll 4.1.0
$ which jekyll
/Users/vishrutarya/.gem/ruby/2.7.0/bin/jekyll
【问题讨论】:
标签: ruby jekyll bundler github-pages