zoukankan      html  css  js  c++  java
  • 解决Starting to watch source with Jekyll and Compass. Starting Rack on port 4000

    问题

    Starting to watch source with Jekyll and Compass. Starting Rack on port 4000
    rake aborted!
    Errno::ENOENT: No such file or directory - jekyll
    /Users/apple/Desktop/Project/Blog/jackyshan.github.io/Rakefile:84:in `spawn'
    /Users/apple/Desktop/Project/Blog/jackyshan.github.io/Rakefile:84:in `block in <top (required)>'
    Tasks: TOP => preview
    (See full trace by running task with --trace)
    

    解决

    vi Gemfile 更改source

     source "https://rubygems.org"
    
    group :development do
      gem 'rake', '~> 10.0'
      gem 'jekyll', '~> 2.0'
      gem 'octopress-hooks', '~> 2.2'
      gem 'octopress-date-format', '~> 2.0'
      gem 'jekyll-sitemap'
      gem 'rdiscount', '~> 2.0'
      gem 'RedCloth', '~> 4.2.9'
      gem 'haml', '~> 4.0'
      gem 'compass', '~> 1.0.1'
      gem 'sass-globbing', '~> 1.0.0'
      gem 'rubypants', '~> 0.2.0'
      gem 'rb-fsevent', '~> 0.9'
      gem 'stringex', '~> 1.4.0'
    end
    
    gem 'sinatra', '~> 1.4.2'
    

    执行下面代码

    sudo gem install bundler
    
    rbenv rehash
    
    bundle install
    

    出现ssl问题

    Could not load OpenSSL.
    You must recompile Ruby with OpenSSL support or change the sources in your Gemfile from 'https' to 'http'. Instructions
    for compiling with OpenSSL using RVM are available at rvm.io/packages/openssl.

    执行下面代码

  • 相关阅读:
    Codeforces Round #217 (Div. 2)B. Berland Bingo
    走迷宫1 bnu 1054
    MFC 对话框背景图片
    用Visual C++从位图文件生成任意形状的窗口
    poj 2245 Lotto
    poj 1797 Heavy Transportation
    poj 2253 Frogger
    poj 1125 Stockbroker Grapevine
    B. Books
    【转】阻塞与非阻塞socket的优缺点
  • 原文地址:https://www.cnblogs.com/jackyshan/p/5149826.html
Copyright © 2011-2022 走看看