Ubuntu 16.04下更新Atom

在Ubuntu下Atom好像不会自动更新,但是可以通过这些方法去实现:

1、安装插件:https://atom.io/packages/up2date

2、使用apt源更新:

sudo apt-get update
sudo apt-get install atom

3、通过官网源:

wget https://atom.io/download/deb -O atom64.deb
sudo dpkg -i atom64.deb

4、通过GitHub源:

https://github.com/atom/atom/releases

参考:

https://stackoverflow.com/questions/24741996/how-to-upgrade-atom-editor-on-linux

https://discuss.atom.io/t/how-can-i-automatically-update-version-of-the-atom-editor/20209/25

原文地址:https://www.cnblogs.com/EasonJim/p/7842698.html