Home > Article > Development Tools > A brief discussion on how to install the Atom editor on Linux
This article will introduce to you how to install the Atom editor in Linux. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.
Atom text editor, a semi-open source text editor based on Electron / Node.js produced by Github. It's a modern desktop text editor that meets your expectations, and beneath the surface, it's a development tool worth improving together. [Related recommendations: "atom tutorial"]
Official website address: https://atom.io
The Atom editor is The core of a developer's toolbox, but usually cannot be used alone. As a native Hithub tool, Atom can use Git tools to get packages from GitHub, create new branches, stage, commit, push and pull, resolve merge conflicts, view pull requests, etc., all from the editor conduct.
Atom can be installed and used on OS X, Windows or Linux.
Search and install new packages, or create your own from Atom.
Atom helps you write code faster with smart and flexible auto-completion.
Easily browse and open individual files, entire projects, or multiple projects in one window.
Split your Atom interface into multiple panes to compare and edit code in files.
Type, find, preview and replace text in files or all projects.
Atom comes pre-installed with four user interface and eight syntax themes (dark and light). If you don't like that you can also install themes created by Atom community users or create your own.
Customizing and styling Atom is easy. Use CSS/Less to adjust the appearance of your UI and add key functionality using HTML and JavaScript.
Atom depends on Git, please install Git before formal installation
Atom-amd64.deb installation package
wget https://github.com/atom/atom/releases/download/v1.52.0/atom-amd64.deb
sudo dpkg -i atom-amd64.deb # 如果缺少依赖运行下面的命令安装依赖包 sudo apt install -fIf you cannot install dependencies, you can Try to use snap to install
sudo snap install atom --classic
wget https://github.com/atom/atom/releases/download/v1.52.0/atom.x86_64.rpm
rpm -ivh atom-amd64.rpm
simplified-chinese -menu After installation, you can switch to the Chinese interface
Introduction to Programming! !
The above is the detailed content of A brief discussion on how to install the Atom editor on Linux. For more information, please follow other related articles on the PHP Chinese website!