Forked from kawaz/install_neovim_to_amazonlinux.sh
Created
September 21, 2022 16:10
-
-
Save danilofreire/ab6ad381cff290984863651e28e685dd to your computer and use it in GitHub Desktop.
install neovim to amazonlinux
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 | |
sudo yum groups install -y Development\ tools | |
sudo yum install -y cmake | |
sudo yum install -y python34-{devel,pip} | |
sudo pip-3.4 install neovim --upgrade | |
( | |
cd "$(mktemp -d)" | |
git clone https://github.com/neovim/neovim.git | |
cd neovim | |
make CMAKE_BUILD_TYPE=Release | |
sudo make install | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment