vnpy/setup_win64_py35.md
2019-03-10 14:32:13 +08:00

30 lines
622 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

1、下载64位Miniconda安装在windows 10 64bit环境下
-地址 https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/
-安装时勾选添加python3.7路径到系统path
2、打开conda命令行窗口
-添加国内的镜像更新源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
-创建pytho 3.5的环境
conda create --name py35 python=3.5
- 创建后,激活
activate py35
- 安装pyqt
conda install pyqt
- 安装 需要的软件包
pip -r requirements.txt
- 安装 ta-lib
conda install -c quantopian ta-lib=0.4.9