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: