I've installed a package (vim) in my raspberry pi (debian 11) by cloning the GitHub repository and running the commands make
and make install
as it's explained here https://tecadmin.net/install-vim-linux/
What I typed:
sudo apt install git make ncurses-dev build-essential
git clone https://github.com/vim/vim.git
cd vim/src
./configure
make
sudo make install
Then I read this: https://www.vim.org/git.php and I noticed that I only made the building part.
I was just following the steps and all right, I've done it. But after that I removed the downloaded folder and I have some questions about how this process works:
- I should have kept the installation folder?
- How can I remove/update the installed program? (I looked it up and it seems
make uninstall
is the command, but I'm not sure)