2
2

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.

CoffeeScript導入【CentOS 5】

Posted at

python 2.6インストール

EPELを使ってインストール

cd /tmp
wget http://ftp-srv2.kddilabs.jp/Linux/distributions/fedora/epel/5/x86_64/epel-release-5-4.noarch.rpm
rpm -ivh epel-release-5-4.noarch.rpm
yum --enablerepo=epel install python26
rm -f /usr/bin/python
ln -fns /usr/bin/python2.6 /usr/bin/python

node.jsのインストール

cd /usr/local/src
wget http://nodejs.org/dist/v0.8.15/node-v0.8.15.tar.gz
tar -zxvf node-v0.8.15.tar.gz
cd node-v0.8.15
./configure
make
make install

npm

curl https://npmjs.org/install.sh | sh

Coffee Scriptのインストール

npm install -g coffee-script
2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?