💪
arm64 LinuxでNeovimが使いたい!
公式インストールがない!そしたらビルドするしかない!
ライブラリのインストール
sudo apt update && sudo apt install -y --no-install-recommends \
ninja-build gettext cmake unzip curl build-essential ca-certificates
Neovimリポジトリをクローンする
# gitがなかったらsudo apt-get install gitで入る
git clone https://github.com/neovim/neovim.git
ビルドする
cd neovim
git checkout stable
make CMAKE_BUILD_TYPE=RelWithDebInfo
# 特定のディレクトリにビルドしたければ
# sudo make install CMAKE_INSTALL_PREFIX=/home/hoge
sudo make install
完璧だぜ!!!
Discussion