vnpy/install.sh

23 lines
456 B
Bash
Raw Normal View History

2019-03-19 02:45:48 +00:00
#!/usr/bin/env bash
# Get and build ta-lib
pushd /tmp
wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz
tar -xf ta-lib-0.4.0-src.tar.gz
cd ta-lib
./configure --prefix=/usr
make
sudo make install
popd
# old versions of ta-lib imports numpy in setup.py
pip install numpy
2019-03-19 02:45:48 +00:00
# Install Python Modules
2019-02-26 02:31:23 +00:00
pip install -r requirements.txt
# Install local Chinese language environment
sudo locale-gen zh_CN.GB18030
2019-03-19 02:45:48 +00:00
# Install vn.py
pip install .