Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaito Sakurai committed Mar 25, 2019
2 parents bdde51d + d72c67d commit 11f9aa0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions install_python.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
#!/bin/sh
#!/bin/bash

PYTHON_VER="2.7.2"
PYTHON_VER="2.7.15"
PREFIX="${HOME}/local"


mkdir download
pushd 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

Expand All @@ -19,8 +18,9 @@ PREFIX="${HOME}/local"
popd

export PATH=${PREFIX}/bin/:$PATH
python ez_setup.py
easy_install pip
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
pip install wheel
pip install jubatus
pip install msgpack-rpc-python

Expand Down

0 comments on commit 11f9aa0

Please sign in to comment.