Atom (text editor): Difference between revisions

 
Line 4: Line 4:
[https://flight-manual.atom.io/getting-started/sections/installing-atom/ Reference]<br>
[https://flight-manual.atom.io/getting-started/sections/installing-atom/ Reference]<br>
====Ubuntu====
====Ubuntu====
*Make sure to add the repo to get updates
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
wget -qO - https://packagecloud.io/AtomEditor/atom/gpgkey | sudo apt-key add -
wget -qO - https://packagecloud.io/AtomEditor/atom/gpgkey | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] https://packagecloud.io/AtomEditor/atom/any/ any main" > /etc/apt/sources.list.d/atom.list'
sudo sh -c 'echo "deb [arch=amd64] https://packagecloud.io/AtomEditor/atom/any/ any main" > /etc/apt/sources.list.d/atom.list'
sudo apt-get update
sudo apt-get update
sudo apt install atom
</syntaxhighlight>
</syntaxhighlight>