下载源码
git clone https://github.com/neovim/neovim.git
编译
make CMAKE_BUILD_TYPE=RelWithDebInfo
出现以下报错
Invalid operation cmake
安装cmake
sudo apt-get install cmake
出现以下报错
Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
安装pkg-config
sudo apt-get install pkg-config
出现以下报错
automake: not found
安装automake
sudo apt-get install automake
出现以下报错
libtoolize: not found
安装libtool
sudo apt-get install libtool
出现以下报错
libtool: Command not found
安装libtool-bin
sudo apt-get install libtool-bin
出现以下报错
Could not find an 'unzip' program. Tried: unzip
安装unzip
sudo apt-get install unzip
出现以下报错
Could NOT find Gettext (missing: GETTEXT_MSGMERGE_EXECUTABLE
安装gettext
sudo apt-get install gettext
编译完成,安装
sudo make install
安装完成用以下命令查看neovim版本,出现版本信息表示安装成功
nvim --version
网友评论