Skip to content

[FAQ] How to install vim text editor in Ubuntu Linux machine. #122

@DanielB280320

Description

@DanielB280320

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

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions