forked from jubatus/jubatus-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
oda
committed
May 22, 2012
1 parent
6f958d8
commit fb4f7d0
Showing
3 changed files
with
45 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#/bin/sh | ||
|
||
PYTHON_VER="2.7.2" | ||
PREFIX="${HOME}/local" | ||
|
||
|
||
mkdir download | ||
cd download | ||
|
||
wget http://www.python.org/ftp/python/${PYTHON_VER}/Python-${PYTHON_VER}.tgz | ||
wget http://peak.telecommunity.com/dist/ez_setup.py | ||
|
||
tar zxf Python-${PYTHON_VER}.tgz | ||
|
||
cd Python-${PYTHON_VER} | ||
./configure --prefix=${PREFIX} | ||
make | ||
make install | ||
|
||
cd .. | ||
python ez_setup.py | ||
easy_install pip | ||
pip install jubatus | ||
pip install msgpack-rpc-python | ||
|
||
|
||
|