-
Notifications
You must be signed in to change notification settings - Fork 14
Closed
Labels
Description
Course
data-engineering-zoomcamp
Question
How to install vim (Vi Improved) text editor in Ubuntu Linux machine?
Answer
Within your terminal run the following commands:
1. sudo apt-get update > To get the lastest updates for ubuntu system before install our depency.
2. sudo apt-get install vim > This command will install the latest version of vim.
3. vim -version > We can check the version of vim that was installed in our system.
Also we can run all at once, with the following command:
sudo apt-get update && sudo apt-get install vim -y
The -y parameter by default accept any confirmation message.
Checklist
- I have searched existing FAQs and this question is not already answered
- The answer provides accurate, helpful information
- I have included any relevant code examples or links
Reactions are currently unavailable