Jekyll - command not found

后端 未结 15 1827

I am trying to get Jekyll running but I have no experience with Ruby.
As far as I can tell the installation of Jekyll has succeeded.
However:

$ jekyll
         


        
15条回答
  •  醉话见心
    2021-01-31 02:37

    One solution would be editing your ~/.bashrc file and add this line:

    PATH=$PATH:~/.gem/ruby/1.8/gems/bin

    This will add ~/.gem/ruby/1.8/gems/bin in Bash's lookup path.

    Reopen the terminal and it should work. Or you can use the following command:

    . ~/.bashrc

提交回复
热议问题