install gvim on centos7

1. Brief description

Installing the EDA virtual machine by yourself is very troublesome, and everything needs to be configured. Today, configure and install gvim first, and then I will write an article on how to install centos7 EDA virtual machine.

2. Operation

1) git download vim

git clone https://github.com/vim/vim.git

2) Prompt that there is no git command

Insert picture description here
Perform the first step after installing git.

sudo yum install git -y

or

 sudo yum install -y git

3) Solve the dependency problem of vim

sudo yum install -y ncurses-devel

4) Compile and install

cd vim/src
./configure --prefix=/usr/local
make
sudo make install

Welcome to follow my public account: Core Kingdom, there are more FPGA & digital IC technology sharing, and you can also get open source FPGA projects!

Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_40377195/article/details/105095853