The new Atom 1.0 text editor is now available. But only to 64-bit processors. How I can create a 32-bit version?
Asked
Active
Viewed 1.1k times
3 Answers
11
These instructions assume you have a 32-bit system:
sudo apt-get install build-essential git libgnome-keyring-dev fakeroot rpm libx11-dev libxkbfile-dev
Setup node.js:
curl --silent --location https://deb.nodesource.com/setup_0.12 | sudo bash -
sudo apt-get install nodejs
Clone the Atom repository:
cd
git clone https://github.com/atom/atom
If you need the latest release:
git fetch -p
git checkout $(git describe --tags `git rev-list --tags --max-count=1`)
Now build and install:
cd atom
sudo script/build --create-debian-package
Use sudo above to avoid permission denied errors during the build process. Also, if you have a problem at the build command, run sudo update-alternatives --install /usr/bin/node node /usr/bin/nodejs 10.
Or install Atom via a PPA:
sudo add-apt-repository ppa:webupd8team/atom
sudo apt-get update
sudo apt-get install atom
Joel DeWitt
- 427
- 1
- 5
- 14
A.B.
- 89,123
- 21
- 245
- 323
-
script/build give me that error: http://i.imgur.com/f7UFbVK.png – Jorge B. Jun 26 '15 at 13:09
-
1Same here with another Atom plugin. Try it again later. It's a temporary problem. – A.B. Jun 26 '15 at 13:10
-
Ok, maybe an other server in the latest Atom release for the plugins. I have updated my answer. – A.B. Jun 26 '15 at 13:15
-
1I've now the `.deb` 32-bit – Jorge B. Jun 26 '15 at 13:36
1
https://github.com/atom/atom/blob/master/docs/build-instructions/linux.md
Build it mate. As it is in readme, step by step. :)
niziou
- 11
- 2
0
A 32 bit version of Atom is now availible.
Run the following commands to add its repository and install it.
sudo add-apt-repository ppa:webupd8team/atom
sudo apt-get update
sudo apt-get install atom
Lii
- 53
- 6