Skip to content

Instantly share code, notes, and snippets.

@rheinardkorf
Last active June 27, 2024 07:25
Show Gist options
  • Save rheinardkorf/b0dc3f82ccd7240f98b8e7c76db5ef61 to your computer and use it in GitHub Desktop.
Save rheinardkorf/b0dc3f82ccd7240f98b8e7c76db5ef61 to your computer and use it in GitHub Desktop.
Install neovim on Amazon Linux 2.
#!/usr/bin/env bash
# Same as https://github.com/neovim/neovim/wiki/Installing-Neovim#centos-8--rhel-8
# but requires EPEL 7, not 8.
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum install -y neovim python3-neovim
@wcheek
Copy link

wcheek commented Jun 27, 2024

This worked for me. Cheers!

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