How to upgrade Atom Editor on Linux?

前端 未结 16 671
醉梦人生
醉梦人生 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条回答
  •  执笔经年
    2021-01-30 16:08

    Currently the preferred procedure is described at the atom pages Installing Atom - Platform-linux

    When using the add-apt-repository suggested in the top answer, this URL is suggested.

    The apt repository mentioned at the Atom pages:

    curl -sL 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 apt-get update
    

提交回复
热议问题