Github Pages 的 `bundle exec jekyll 3.8.7 new .` 错误

va0*_*a01 6 ruby bundler jekyll github-pages

目标

使用 Jekyll 启动 Github 页面。我正在关注Github Pages 文档

问题

执行后:

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 是Github Pages当前依赖版本,(b) 如果我尝试使用 Jekyll 4.1.0,则会返回相同的错误。

语境

我尝试了这篇 SO 帖子中的建议-- $ 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

Run Code Online (Sandbox Code Playgroud)

Aka*_*wal 3

在 MacOS 上遇到了同样的问题。这就是我最终所做的:

  1. 创建一个新目录,我们称之为blog
  2. 跑步bundle init
  3. 在 Gemfile 中,添加以下行gem "jekyll", "= 3.8.7"
  4. 跑步bundle i
  5. 您可以通过发出来验证 jekyll 版本bundle exec jekyll -v
  6. docs/在同一文件夹中创建一个目录
  7. 跑步bundle exec jekyll new .
  8. 在目录bundle i下再次运行docs/
  9. 要提供服务,请bundle exec jekyll servedocs/目录中运行

我希望这有帮助!