Answers:
可以在Raspberry Pi上安装Atom。我在Ubuntu Mate上做到了(但我猜它与Raspbian的工作原理相同)。
使用说明
您必须使用终端仿真器安装一些依赖项。安装所有依赖项:
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引起了问题,您还需要将其安装在项目文件夹中,否则会产生构建错误。
下载源:
git clone https://github.com/atom/atom.git
cd atom
npm install node-gyp
./script/build
如果这给您带来了问题,请尝试使用sudo:
sudo ./script/build
sudo script/grunt install
这会将原子安装到文件夹“ / usr / local / bin”中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/
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
是我可以获得使用新版本的唯一方法。