Last active
September 1, 2016 21:51
-
-
Save YoshihitoAso/b4b59996c7a8a29ac67d to your computer and use it in GitHub Desktop.
Ubuntu14.04環境へのBigchainDBのインストール方法
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
1)RethinkDB Serverをインストールする。 | |
以下のコマンドを実行していけばインストール可能。 | |
$ source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list | |
$ wget -qO- https://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add - | |
$ sudo apt-get update | |
$ sudo apt-get install rethinkdb | |
起動してみる。 | |
$ rethinkdb | |
2)Python3.4以上をインストールする | |
自分はAnacondaで仮想環境を作っているので以下のようにして仮想環境を作成。 | |
"Bigchain"という名前の仮想環境を作成する。 | |
$ conda create -n Bigchain python=3 | |
$ source activate Bigchain | |
$ python --version | |
Python 3.5.1 :: Continuum Analytics, Inc. | |
pipもインストールしておく。 | |
$ conda install pip | |
$ pip -V | |
pip 8.0.2 from /home/y-aso/anaconda/envs/Bigchain/lib/python3.5/site-packages (python 3.5) | |
3)BigchainDBをインストールする(pipで) | |
まず以下のモジュールが必要なのでインストールする。 | |
$ sudo apt-get install libffi-dev g++ libssl-dev python3-dev | |
pipでBigchainDBをインストールする。 | |
$ pip install bigchaindb | |
起動してみる。 | |
$ bigchaindb start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment