How to upgrade Atom Editor on Linux?

前端 未结 16 837
醉梦人生
醉梦人生 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:10

    As of this writing, the best option to upgrade to the latest released version of Atom is to check out the most recent tag and build it, especially if you built it in the first place.

    1. cd atom
    2. git pull
    3. git checkout v0.115.0 (or whatever the latest release is: https://github.com/atom/atom/releases)
    4. script/build
    5. sudo script/grunt install

提交回复
热议问题