This commit is contained in:
msincenselee 2017-10-18 08:58:26 +08:00
parent 05ee4bfe5c
commit 32a2a80f6f
3 changed files with 39 additions and 1 deletions

10
install.bat Normal file
View File

@ -0,0 +1,10 @@
::Install Python Modules
pip install -r requirements.txt
::Install Ta-Lib
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
conda install -c quantopian ta-lib=0.4.9
:: Install vn.py
python setup.py install

26
install.sh Normal file
View File

@ -0,0 +1,26 @@
#!/bin/bash
#Build ctp/lts/ib api
pushd vnpy/api/ctp
bash build.sh
popd
pushd vnpy/api/lts
bash build.sh
popd
pushd vnpy/api/ib
bash build.sh
popd
#Install Python Modules
pip install -r requirements.txt
#Install Ta-Lib
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
conda install -c quantopian ta-lib=0.4.9
#Install vn.py
python setup.py install

View File

@ -6,4 +6,6 @@ pymongo
websocket-client
msgpack-python
zmq
qdarkstyle
PySide
qdarkstyle
SortedContainers