Home  >  Article  >  Development Tools  >  A brief discussion on how to install the Atom editor on Linux

A brief discussion on how to install the Atom editor on Linux

青灯夜游
青灯夜游forward
2021-05-20 11:02:425160browse

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.

A brief discussion on how to install the Atom editor on Linux

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

A brief discussion on how to install the Atom editor on Linux

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.

Features

Cross-platform editing

Atom can be installed and used on OS X, Windows or Linux.

Built-in Package Manager

Search and install new packages, or create your own from Atom.

Smart Auto-Complete

Atom helps you write code faster with smart and flexible auto-completion.

File System Browser

Easily browse and open individual files, entire projects, or multiple projects in one window.

Multiple Panes

Split your Atom interface into multiple panes to compare and edit code in files.

Find and Replace

Type, find, preview and replace text in files or all projects.

Custom Themes

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.

Customization

Customizing and styling Atom is easy. Use CSS/Less to adjust the appearance of your UI and add key functionality using HTML and JavaScript.

Installation

Atom depends on Git, please install Git before formal installation

Debian/Ubuntu distribution

  • Download

Atom-amd64.deb installation package

  • ##https://github.com/atom/atom/releases/download/v1.52.0 /atom-amd64.deb

You can also use shell commands to download

wget https://github.com/atom/atom/releases/download/v1.52.0/atom-amd64.deb
    Installation
sudo dpkg -i atom-amd64.deb
# 如果缺少依赖运行下面的命令安装依赖包
sudo apt install -f
If you cannot install dependencies, you can Try to use snap to install

sudo snap install atom --classic
    Post-installation startup interface

A brief discussion on how to install the Atom editor on Linux

Centos/Fedora distribution

    Download
Atom-amd64.rpm installation package:

  • https://github.com/atom/atom/releases /download/v1.52.0/atom.x86_64.rpm

You can also use the shell command to download

wget https://github.com/atom/atom/releases/download/v1.52.0/atom.x86_64.rpm
    Installation
rpm -ivh atom-amd64.rpm

Windows

Atom.exe installation package

  • https://atom-installer.github.com/v1.52.0/AtomSetup-x64. exe

Other system version download

Download page

  • https://github.com /atom/atom/releases/tag/v1.52.0

Set the language to Chinese

Search in the extension

simplified-chinese -menu After installation, you can switch to the Chinese interface

A brief discussion on how to install the Atom editor on Linux

For more programming-related knowledge, please visit:

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!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete