KO
|
EN
gitlite — search
Search
#python
#javascript
#machine-learning
#hacktoberfest
#deep-learning
#go
#golang
#python3
#game-development
#nodejs
#docker
#pytorch
client
★ 35
Open GitHub ↗
Biicode client
Download README (.md)
Explore Similar Repositories
Telegram-iOS
:
Telegram iOS Unofficial
codeigniter-restserver-test
:
A temporary repository for testing https://github.com/chriskacerguis/codeigniter-restserver
Cake-Example
:
A step-by-step example of using Cake (C# Make) build runner
TemplatePrefetch
:
A provider based on ui.router which prefetches all templates required by potentially following steps.
OFList
:
Create a printable daily todo list for OmniFocus
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
client
?
Download (.md)
# Biicode client ## Requirements Python 2.7 Install extra dependencies (Check [`requirements.txt`](requirements.txt) file) with [`pip`](https://pypi.python.org/pypi/pip) command line tool: pip install -r requirements.txt biicode.client module depends on [`biicode.common`](https://github.com/biicode/common) module too. Follow `biicode/common repo instructions. *See "Run client" bellow also for a step by step example.* ## Run client ### Create a folder named "biicode": mkdir biicode cd biicode ### Clone this repository inside "biicode" folder: git clone https://github.com/biicode/client.git ### Clone [`biicode/common`](https://github.com/biicode/common) repository inside "biicode" folder: git clone https://github.com/biicode/common.git ### Install `biicode.client` dependencies pip install -r client/requirements.txt ### Install `biicode.common` dependencies pip install -r common/requirements.txt ### Add a module marker for the `biicode` folder: 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`](https://github.com/biicode/biicode) main repo.*