Updated: 21 March 2024
How to install Neovim, from the App Image, on Ubuntu.
- Pick a stable release https://github.com/neovim/neovim/releases/tag/stable
- Download the nvim.appimage asset.
- Run
chmod u+x nvim.appimage
to make the nvim.appimage file executable. - Start the neovim editor with
./nvim.appimage
. - If your system indicates that FUSE is missing, it can be installed (for Ubuntu >= 22.04) with
sudo apt install libfuse2
. - Rename the executable and put it in a location on your PATH e.g.
mv nvim.appimage /home/chris/.local/bin/nvim
orsudo mv nvim.appimage /usr/bin/nvim
- Now start the neovim editor with
nvim