jekyll 3.3.1 | Error: invalid b

作者: seay | 来源:发表于2017-01-17 21:45 被阅读65次

    Execute command

    bundle exec jekyll serve
    

    Error messages

    Liquid Exception: invalid byte sequence in GBK in _layouts/redirect.html
    jekyll 3.3.1 | Error:  invalid byte sequence in GBK
    

    This error is on the Windows System.

    Resolve methods

    **Command Line Prompt **

    chcp 65001
    bundle exec jekyll serve
    

    **Bash Shell **

    $ export LC_ALL=en_US.UTF-8
    $ export LANG=en_US.UTF-8
    $ jekyll --server --auto
    $ bundle exec jekyll serve
    

    相关文章

      网友评论

        本文标题:jekyll 3.3.1 | Error: invalid b

        本文链接:https://www.haomeiwen.com/subject/bucvbttx.html