0

Windows 7 に jekyll をインストールしましたが、動作しません。jekyllSite というフォルダーを作成し、フォルダーに必要なファイルを含めてから、コマンド プロンプトを開きcd、そのフォルダーでコードを実行しjekyllます。次のメッセージが生成されます。私は何が間違っているのか理解できませんか?

←[1mNAME←[0m:

    jekyll

  ←[1mDESCRIPTION←[0m:

    Jekyll is a blog-aware, static site generator in Ruby

  ←[1mCOMMANDS←[0m:

    build                Build your site
    default
    docs                 Launch local server with docs for Jekyll v1.2.1

    doctor               Search site and print specific deprecation
warnings
    help                 Display global or [command] help documentation.

    import               Import your old blog to Jekyll
    new                  Creates a new Jekyll site scaffold in PATH

    serve                Serve your site locally

  ←[1mALIASES←[0m:

    hyde                 doctor
    server               serve

  ←[1mGLOBAL OPTIONS←[0m:

    -s, --source [DIR]
        Source directory (defaults to ./)

    -d, --destination [DIR]
        Destination directory (defaults to ./_site)

    --safe
        Safe mode (defaults to false)

    -p, --plugins PLUGINS_DIR1[,PLUGINS_DIR2[,...]]
        Plugins directory (defaults to ./_plugins)

    --layouts DIR
        Layouts directory (defaults to ./_layouts)

    -h, --help
        Display help documentation

    -v, --version
        Display version information

    -t, --trace
        Display backtrace when an error occurs
4

1 に答える 1

0

あなたが提供した出力は、jekyll実行可能ファイルができることの単なる説明です。結果を得るには、jekyll コマンドを使用してサイトを構築する (静的ファイルを即座に準備する) か、サイトをホストする必要があります。

したがって、そのような場合は、次のいずれかを使用します。

jekyll build

また

jekyll serve

それぞれ。

于 2013-11-03T14:29:38.423 に答える