From c225769b432bc821dcc3c48a0a012725a09fb63d Mon Sep 17 00:00:00 2001 From: msincenselee Date: Mon, 5 Feb 2018 15:31:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0FAQ?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 63 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fd246d1f..d4f43c10 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,71 @@ Fork版本主要改进如下: 大佳 QQ/Wechat:28888502 + +-------------------------------------------------------------------------------------------- +FAQ: +1、CentOS的环境 + # 安装解压包支持 + yum install bzip2.x86_64 + # 安装nodejs,支持request + yum -y install nodejs + # 支持ssl + yum -y install openssl-devel + # 安装python开发库 + yum install python-devel.x86_64 + #安装boost + wget http://sourceforge.net/projects/boost/files/boost/1.55.0/boost_1_55_0.tar.gz/download + mv download boost_1_55_0.tar.gz + tar -xvzf boost_1_55_0.tar.gz + cd boost_1_55_0/ + ./bootstrap.sh --with-libraries=atomic,date_time,exception,filesystem,iostreams,locale,program_options,regex,signals,system,test,thread,timer,log + ./b2 install + +2、Ubuntu环境 + apt-get install gcc + apt-get install make + apt-get install libssl-dev + apt-get install freetds-dev + apt-get install python-dev + apt-get install mpi-default-dev + apt-get install libicu-dev + apt-get install libbz2-dev + apt-get install libboost-thread-dev + apt-get install libboost-python-dev + apt-get install cython + sudo apt-get install nodejs + sudo apt-get update && sudo apt-get install build-essential + +3、创建多版本环境: + wget -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-4.3.1-Linux-x86_64.sh + chmod a+x Anaconda3-4.3.1-Linux-x86_64.sh + ./Anaconda3-4.3.1-Linux-x86_64.sh + + # 配置为国内的镜像 + conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ + conda config --set show_channel_urls yes + + 选择其中一个来创建 + conda create --name py27 python=2.7 + conda create --name py35 python =3.5 + + 激活的例子 + source activate py27 + source activate py35 + + +3、碰到的问题:importError: libGL.so.1: cannot open shared object file: No such file or directory + ubuntu下:sudo apt install libgl1-mesa-glx + centOS下:sudo yum install mesa-libGL.x86_64 + +4、碰到的问题:version `GLIBCXX_3.4.21' not found + conda install libgcc + + +-------------------------------------------------------------------------------------------- # vn.py - 基于python的开源交易平台开发框架 https://github.com/vnpy/vnpy ---- +-------------------------------------------------------------------------------------------- ### License MIT