Friday, December 13, 2019

How To Install Atom Text Editor And IDE on Ubuntu 18.04.2 LTS

Video Tutorial - https://youtu.be/jiMNC9qJDMQ

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Atom is a sleek and feature-rich open source Text editor from the makers of Github. The beautiful interface and the long list of features make it one of the best code editors.
Offcial Website:https://atom.io/             ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Our Server Specification-
Os:  Ubuntu 18.04.2 LTS Bionic Beaver 64Bit      Hostname:           IP Address of Server:
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
lsb_release -cd  ; getconf LONG_BIT

apt update ; apt install -y build-essential software-properties-common wget
wget -qO - https://packagecloud.io/AtomEditor/atom/gpgkey | sudo apt-key add -
sh -c 'echo "deb [arch=amd64] https://packagecloud.io/AtomEditor/atom/any/ any main" > /etc/apt/sources.list.d/atom.list'
apt-get update ; apt-get -y install atom
Or
apt-get update ; apt-get -y install atom-beta

Or
apt update ; apt install -y build-essential software-properties-common wget
wget -q https://packagecloud.io/AtomEditor/atom/gpgkey -O- | sudo apt-key add
add-apt-repository "deb [arch=amd64] https://packagecloud.io/AtomEditor/atom/any/ any main"
apt install atom -y 

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

No comments:

Post a Comment