Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 Jekyll 的教程建立了一个非常基本的博客,并将其托管在 localhost 上jekyll serve,但是当我使用时jekyll serve --w,该站点会生成然后命令给出
jekyll serve
jekyll serve --w
C:/Ruby193/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:in 'require': 无法加载这样的文件 --wdm (LoadError)
后面还有很多其他信息
我在 Windows 上运行 Ruby 1.9.3。
如果无法加载wdm,我会尝试:
wdm
gem install wdm
编辑:看起来你并不孤单。谷歌第一个命中。
您需要安装 wdm 和 directory_watcher:
gem install directory_watcher gem install wdm
请记住将这一行添加到 Gemfile:
gem 'directory_watcher' gem 'wdm'
祝你好运!