Saturday, November 30, 2019

3 Ways To Install Atom Text editor on Ubuntu Desktop 18.04 LTS

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

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

Atom is a cross-platform, sophisticated IDE text/code editor for folks who need decent editor with cool features like context-aware auto-completion, code navigation features such as an outline view, document formatting, file system browser, works with Git and GitHub directly and much more….
Offcial Website: https://atom.io/  || Github:https://github.com/atom/atom               
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
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 -y ; apt install -y build-essential software-properties-common curl gdebi vim wget apt-transport-https

Method:1
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

Method:2
apt update ; apt-get install snapd -y
snap install atom --classic

Method:3
wget https://github.com/atom/atom/releases/download/v1.37.0/atom-amd64.deb
gdebi atom-amd64.deb

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

No comments:

Post a Comment