Created
March 30, 2013 15:09
-
-
Save YoshihitoAso/5277045 to your computer and use it in GitHub Desktop.
[Jubatus]Jubatusインストール手順
This file contains hidden or 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
| # install jubatus | |
| rpm -Uvh http://download.jubat.us/yum/rhel/6/stable/x86_64/jubatus-release-6-1.el6.x86_64.rpm | |
| yum install jubatus jubatus-client | |
| # python client | |
| yum install python-pip python-setuptools | |
| python-pip install jubatus | |
| # java client | |
| wget http://ftp.jaist.ac.jp/pub/apache/maven/maven-3/3.0.5/binaries/apache-maven-3.0.5-bin.tar.gz | |
| tar xvzf apache-maven-3.0.3-bin.tar.gz | |
| mv apache-maven-3.0.3 /usr/share | |
| ln -s /usr/share/apache-maven-3.0.3 /usr/share/maven | |
| vim /etc/profile | |
| -- | |
| export M2_HOME=/usr/share/maven | |
| export M2=$M2_HOME/bin | |
| export PATH=$M2:$PATH | |
| -- | |
| yum install git-core | |
| git clone https://github.com/jubatus/jubatus-java-client.git | |
| cd jubatus-java-client | |
| mvn package |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment