0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Install Atom to Debian Wheezy

Last updated at Posted at 2017-04-17
Playing with Debian Wheezy URL
Atom http://qiita.com/cielavenir/items/7835e3d110d7ad79c407
VSCode OSS http://qiita.com/cielavenir/items/8eb3f57373bac0f10d6f
Skype http://qiita.com/cielavenir/items/1b1d733e4ede8593040f
Meshlab 2016 http://qiita.com/cielavenir/items/5e02ce18d162e17c8859

Atom provides debian package by default, but it requires libc6 >=2.15, which is not the case of Debian Wheezy. So we have to compile Atom from the source code.

Shorter way

170627

  • atom 1.18.0 requires keytar module, which depends on libsecret-1, which cannot be installed on Wheezy.
  • I uploaded 1.17.2 binary. Stick with this.

Prerequisites

curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -/
echo "deb https://deb.nodesource.com/clang-3.4 wheezy main" | sudo dd of=/etc/apt/sources.list.d/clang.list
sudo apt-get update
sudo apt-get install nodejs clang-3.4

Building

git clone https://github.com/atom/atom
cd atom
git tag
git checkout v1.16.0 # use the latest "release" from git tag
CC=clang CXX=clang++ script/build
CC=clang CXX=clang++ script/build --create-debian-package
sudo dpkg -i out/atom-amd64.deb

Additional note

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?