Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jinzaizhichi/652088efefa71a4fcd4fb6824b778a5f to your computer and use it in GitHub Desktop.

Select an option

Save jinzaizhichi/652088efefa71a4fcd4fb6824b778a5f to your computer and use it in GitHub Desktop.
install neovim to amazonlinux
#!/usr/bin/env bash
sudo yum groups install -y Development\ tools
sudo yum install -y cmake
#sudo yum install -y python34-{devel,pip}
sudo amazon-linux-extras install python3.8 pip3.8
sudo pip3.8 install neovim --upgrade
(
cd "$(mktemp -d)"
git clone https://github.com/neovim/neovim.git
cd neovim
make CMAKE_BUILD_TYPE=Release
sudo make install
)
@jinzaizhichi
Copy link
Author

#!/usr/bin/env bash
sudo yum groups install -y Development\ tools
sudo yum install -y cmake
#sudo yum install -y python34-{devel,pip}
#sudo amazon-linux-extras install python3.8 pip3.8
sudo pip3 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