How to install the text editor Atom 0.124.0 in Linux

Source: Internet
Author: User
Tags install node linux mint

How to install the text editor Atom 0.124.0 in Linux

Atom is an open-source, cross-platform text editor developed by GitHub. It has a simple and intuitive graphic user interface and a bunch of interesting text editing functions. It supports: CSS, HTML, javaScript and other Web programming languages. Macros are also supported to automatically split the screen and integrate it with the File Manager.

The latest available version is Atom 0.124.0, which has been released for some time and has significant changes.

 

Install Atom through PPA in Ubuntu

Unofficial Atom editor in Windows

Compile and install the Atom editor in Ubuntu

Ubuntu and derivative systems install Atom 0.104.0

Install the Atom text editor on Ubuntu/Linux Mint

Installation Method in Linux

If a Ubuntu user has a PPA available (Ubuntu 14.10, 14.04, and 12.04 are supported), open the terminal and enter the following command:

sudo add-apt-repository ppa:webupd8team/atom
sudo apt-get update
sudo apt-get install atom

Run the following command to uninstall atom:

sudo apt-get remove atom

You can use the following method to install Fedora 20:

Install the dependency package first:

sudo yum -y install node npm libgnome-keyring-devel

Update NMP and adjust path:

cd ~
npm install npm
export PATH="$HOME/node_modules/.bin:$PATH"

Install a stable version of Google Chrome and obtain libudev. so.0:

sudo sh -c 'cat > /etc/yum.repos.d/google-chrome.repo <<EOS
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
EOS'
sudo yum -y install google-chrome-stable

Delete GYP to avoid conflict:

sudo yum -y remove gyp

The obtained Atom source and build software:

git clone https://github.com/atom/atom
cd atom
./script/build

Set the execution permission:

sudo chmod +x /tmp/atom-build/Atom/atom

For easier use, run the following command:

echo "alias atom=LD_LIBRARY_PATH=/opt/google/chrome ~/atom/atom.sh" >> ~/.bashrc
source ~/.bashrc

Open the software, just enter atom on the terminal.

Uninstall command:

rm -f ~/atom
sed '/LD_LIBRARY_PATH=/opt/google/chrome ~/atom/atom.sh/d' ~/.bahsrc

Github Atom details: click here
Github Atom: click here

This article permanently updates the link address:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.