Python 2.7
Install extra dependencies (Check requirements.txt
file) with pip
command line tool:
pip install -r requirements.txt
biicode.client module depends on biicode.common
module too. Follow `biicode/common
repo instructions. See "Run client" bellow also for a step by step example.
mkdir biicode
cd biicode
git clone https://github.com/biicode/client.git
Clone biicode/common
repository inside "biicode" folder:
git clone https://github.com/biicode/common.git
pip install -r client/requirements.txt
pip install -r common/requirements.txt
touch __init__.py
Add to python path the folder containing "biicode" folder and call main function from biicode.client.shell.bii module:
#!/usr/bin/env python
import sys, os
sys.path.append(os.path.join(os.getcwd(), "../"))
from biicode.client.shell.bii import main
main(sys.argv[1:])
You can also follow instructions at biicode/biicode
main repo.