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
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