在Raspberry Pi上安装Atom编辑器


Answers:


7

可以在Raspberry Pi上安装Atom。我在Ubuntu Mate上做到了(但我猜它与Raspbian的工作原理相同)。

使用说明

  1. 您必须使用终端仿真器安装一些依赖项。安装所有依赖项: sudo apt-get install build-essential git libgnome-keyring-dev fakeroot gconf2 gconf-service libgtk2.0-0 libudev1 libgcrypt20 python rpm npm npm-cli apm nodejs 设置python路径: npm config set python /usr/bin/python2 -g 安装node-gyp: npm install -g node-gyp 请注意,这里的node-gyp引起了问题,您还需要将其安装在项目文件夹中,否则会产生构建错误。

  2. 下载源: git clone https://github.com/atom/atom.git

  3. 导航到源文件夹: cd atom
  4. 在本地安装node-gyp: npm install node-gyp
  5. 构建源代码: ./script/build 如果这给您带来了问题,请尝试使用sudo: sudo ./script/build
  6. 如果一切正常,您将获得一个名为“ out”的文件夹。现在运行安装脚本: sudo script/grunt install 这会将原子安装到文件夹“ / usr / local / bin”中
  7. 添加图标菜单。根据您的窗口管理员,这是不同的。我用伴侣添加了我的图标。您可以检查系统是否自动找到程序和图标,然后无需在菜单中添加项目。否则,右键单击进入主菜单。点击edit menu。选择要放置原子的类别。也许使用“发展”。点击add item。现在选择图标。原子图标位于名为“ atom / out / icons”的文件夹中。将其命名为“ atom”。命令:/usr/local/share/atom/atom %F。命令:“ Atom编辑器”或任何您喜欢的东西。

而已!现在启动atom,看看它是否在工作。如果遇到问题,请参阅以下问题。否则写评论。

问题

  • 如果无法安装nodejs,请改用nodejs-legacy。

  • 如果构建找不到node-gyp,请在本地安装它(请参阅上文)。

  • 如果您在启动atom时遇到错误,则将acces写入atom文件夹。 sudo chmod 777 -R /usr/local/share/atom/ sudo chmod 777 -R .atom/


使用apt-get安装npm使我进入了1.14。curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - 是我可以获得使用新版本的唯一方法。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.