Last active
October 21, 2024 14:22
-
-
Save kawaz/393c7f62fe6e857cc3d9 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 | |
) |
thank uuuuuu
Thanks
Thank you for this! One small difference for me, when I got to this step
sudo pip-3.4 install neovim --upgrade
I had to do this instead:
sudo pip3.4 install neovim --upgrade
(without the dash!)
thank you
Thanks
on AL 2023 its:
#!/usr/bin/env bash
sudo yum groups install -y Development\ tools
sudo yum install -y cmake
sudo yum install -y python3-{devel,pip}
sudo pip-3 install neovim --upgrade
(
cd "$(mktemp -d)"
git clone https://github.com/neovim/neovim.git
cd neovim
make CMAKE_BUILD_TYPE=Release
sudo make install
)
Thanks for keeping it alive @drzaiusx11
Thank you both!
My pleasure
Thanks mate! Was tired of being forced to use nano :D
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Damn! Thank you. What a pain it's been until I found this!
Every other method I tried failed miserably!