Skip to content

Instantly share code, notes, and snippets.

@bast
Last active August 9, 2024 05:57
Show Gist options
  • Save bast/9f5c2843d3e9bc4744e7016b56d8fe8e to your computer and use it in GitHub Desktop.
Save bast/9f5c2843d3e9bc4744e7016b56d8fe8e to your computer and use it in GitHub Desktop.
Jekyll installation on Arch Linux.
sudo pacman -S ruby ruby-rdoc gcc make
gem update --user-install
gem install jekyll --user-install
# finally add $HOME/.gem/ruby/2.7.0/bin to your PATH variable
@cabiste-dev
Copy link

as of version 3.0.0 gem's folder is now under ~/.local/share/gem

and to add jekyll to path you use this command (replace the version with your version)

export PATH=$HOME/.local/share/gem/ruby/3.0.0/bin:$PATH

@bast
Copy link
Author

bast commented Aug 7, 2023

Thanks for the clarification!

@AlphaGameDeveloper
Copy link

as of version 3.0.0 gem's folder is now under ~/.local/share/gem

and to add jekyll to path you use this command (replace the version with your version)

export PATH=$HOME/.local/share/gem/ruby/3.0.0/bin:$PATH

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment