Last active
June 27, 2024 07:25
-
-
Save rheinardkorf/b0dc3f82ccd7240f98b8e7c76db5ef61 to your computer and use it in GitHub Desktop.
Install neovim on Amazon Linux 2.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This worked for me. Cheers!