下載源碼
git clone https://github.com/neovim/neovim.git
編譯
make CMAKE_BUILD_TYPE=RelWithDebInfo
出現(xiàn)以下報(bào)錯(cuò)
Invalid operation cmake
安裝cmake
sudo apt-get install cmake
出現(xiàn)以下報(bào)錯(cuò)
Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
安裝pkg-config
sudo apt-get install pkg-config
出現(xiàn)以下報(bào)錯(cuò)
automake: not found
安裝automake
sudo apt-get install automake
出現(xiàn)以下報(bào)錯(cuò)
libtoolize: not found
安裝libtool
sudo apt-get install libtool
出現(xiàn)以下報(bào)錯(cuò)
libtool: Command not found
安裝libtool-bin
sudo apt-get install libtool-bin
出現(xiàn)以下報(bào)錯(cuò)
Could not find an 'unzip' program. Tried: unzip
安裝unzip
sudo apt-get install unzip
出現(xiàn)以下報(bào)錯(cuò)
Could NOT find Gettext (missing: GETTEXT_MSGMERGE_EXECUTABLE
安裝gettext
sudo apt-get install gettext
編譯完成凿试,安裝
sudo make install
安裝完成用以下命令查看neovim版本溉仑,出現(xiàn)版本信息表示安裝成功
nvim --version