How to upgrade Atom Editor on Linux?

前端 未结 16 702
醉梦人生
醉梦人生 2021-01-30 15:32

What is the best way to upgrade atom on Linux Ubuntu ? I install atom using official doc

  git clone https://github.com/atom/atom
  cd atom
  script/build
  sudo         


        
16条回答
  •  猫巷女王i
    2021-01-30 16:24

    Ubuntu 16.04 and later

    Run these commands to quickly and easily install and upgrade the Atom text editor snap package from the terminal in Ubuntu 16.04 and later (64-bit only).

    • Install Atom text editor:

        sudo snap install --classic atom  
      

      Note that a snap in classic confinement behaves as a traditionally packaged application with full access to the system, and Atom extension packages are installed into the user's home directory.

    • Upgrade Atom text editor:

        sudo snap refresh --classic atom 
      

提交回复
热议问题