gpt4 book ai didi

atom-editor - 如何在 Linux 上升级 Atom Editor?

转载 作者:行者123 更新时间:2023-12-03 05:17:55 24 4
gpt4 key购买 nike

在 Linux Ubuntu 上升级 Atom 的最佳方式是什么?我使用官方文档安装atom

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

最佳答案

我创建了以下脚本来更新 Ubuntu 14.10 上的 Atom。

#!/bin/bash
# Update atom from downloaded deb file
rm -f /tmp/atom.deb
curl -L https://atom.io/download/deb > /tmp/atom.deb
dpkg --install /tmp/atom.deb

echo "***** apm upgrade - to ensure we update all apm packages *****"
apm upgrade --confirm false

exit 0

文件atom_update是可执行的,需要使用su调用:

sudo ./atom_update

上面的方法有效,但现在我使用以下内容:

sudo add-apt-repository -y ppa:webupd8team/atom
sudo apt -y update
sudo apt -y install atom
apm install \
file-icons \
tabs-to-spaces \
trailing-spaces \
xml-formatter

通过上述设置

sudo apt -y upgrade

将已安装的atom更新到最新版本。 ppa 通常是最新的。

关于atom-editor - 如何在 Linux 上升级 Atom Editor?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24741996/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com