How to upgrade Atom Editor on Linux?

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

    I would add that you should probably clean before updating the build to prevent some nasty errors.

    cd atom
    git pull
    script/clean
    script/build
    sudo script/grunt install
    

提交回复
热议问题