Welcome to the wikis wiki!
- vnpy3.9.2 supports
python 3.6 - 3.11 - clone vnpy
- latest version
3.9.2 git clone https://github.com/vnpy/vnpy.git
- use conda to create a virtual ENV with python3.10
conda create -n vnpy python=3.10activate vnpy
- install ta-lib
- NOTE. VSCode terminal is not working, use anaconda terminal instead.
conda install -c conda-forge ta-lib
- run
install.bat - other vnpy dependencies
- vnpy_ctp
pip install vnpy_ctp - vnpy_ctastrategy
pip install vnpy_ctastrategy - vnpy_ctabacktester
pip install vnpy_ctabacktester - vnpy_datamanager
pip install vnpy_datamanager - vnpy_sqlite
pip install vnpy_sqlite
- list ENVs
conda info --envsorconda env list - list packages in ENV that's not activated
conda list -n myenv, for activated ENVconda list - create virtual ENV, in this case for vnpy
conda create -n vnpy python=3.10 - activate ENV on Windows:
activate myenvon MAC:source activate myenv