2017-07-15 09:02:47 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-07-15 10:36:19 +00:00
|
|
|
#Build ctp/lts/ib api
|
2017-07-15 09:02:47 +00:00
|
|
|
pushd vnpy/api/ctp
|
|
|
|
bash build.sh
|
|
|
|
popd
|
|
|
|
|
|
|
|
pushd vnpy/api/lts
|
|
|
|
bash build.sh
|
|
|
|
popd
|
|
|
|
|
2017-12-02 13:48:52 +00:00
|
|
|
pushd vnpy/api/xtp
|
|
|
|
bash build.sh
|
|
|
|
popd
|
|
|
|
|
2017-07-15 09:02:47 +00:00
|
|
|
pushd vnpy/api/ib
|
|
|
|
bash build.sh
|
|
|
|
popd
|
|
|
|
|
2017-07-15 10:36:19 +00:00
|
|
|
#Install Python Modules
|
2017-07-15 09:02:47 +00:00
|
|
|
pip install -r requirements.txt
|
|
|
|
|
2017-07-15 10:36:19 +00:00
|
|
|
#Install Ta-Lib
|
2017-07-20 01:53:08 +00:00
|
|
|
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
|
|
|
|
conda config --set show_channel_urls yes
|
2017-07-15 09:02:47 +00:00
|
|
|
conda install -c quantopian ta-lib=0.4.9
|
2018-05-06 13:59:22 +00:00
|
|
|
#conda install -c conda-forge python-snappy
|
2017-07-15 09:02:47 +00:00
|
|
|
|
2017-07-15 10:36:19 +00:00
|
|
|
#Install vn.py
|
2017-07-15 09:02:47 +00:00
|
|
|
python setup.py install
|
|
|
|
|