Prerequisite Downloads
You need to have the following (either free or open-sourced) items in your system. The guide was tested successfully in Windows 7 (x64) with software versions stated below:
Building Procedure
-
Install/unpack the following items:
- install Visual Studio 2015
- install Boost Libraries, e.g. "C:\boost_1_61_0"
- install Anaconda Python3, e.g. "C:\Anaconda3"
- unpack "QuantLib-1.8.zip", e.g. "C:\QuantLib-1.8"
- unpack "QuantLib-SWIG-1.8.zip", e.g. "C:\QuantLib-SWIG-1.8"
-
Start "C:\QuantLib-1.8\QuantLib_vc14.sln" with Visual Studio 2015.
-
In Visual Studio Toolbars, change Solution Configurations to "Release" and change Solution Platforms to "x64".
-
In Property Manager tab, right-click QuantLib and then click Properties. Select VC++ Directories in the left pane, and then append the Boost paths to Include Directories and Library Directories fields respectively in the right pane. For instance, if your Boost is installed in "C:\boost_1_61_0", you will need to
- append path "C:\boost_1_61_0" to Include Directories field.
- append path "C:\boost_1_61_0\lib64-msvc-14.0" to Library Directories field.
-
Build QuantLib module (only). It will take about 15~30 minutes. Once finished you will find "QuantLib-vc140-x64-mt.lib" file in directory "C:\QuantLib-1.8\lib".
-
Run "Anaconda Prompt" from Start Menu. In the console window, goto directory "C:\QuantLib-SWIG-1.8\Python" and set the following environment variables:
- set INCLUDE=C:\boost_1_61_0
- set LIB=C:\boost_1_61_0\lib64-msvc-14.0
- set QL_DIR=C:\QuantLib-1.8
-
Stay in the console window, and type in the following commands to build and install:
- python setup.py build
- python setup.py install
Or you may want to create a distribution package (msi file) by issuing command:
- python setup.py bdist_msi
You will find an installation file "QuantLib-Python-1.8.win-amd64-py3.5.msi" in directory "C:\QuantLib-SWIG-1.8\Python\dist".
Pre-built Library
Below is the QuantLib-1.8 library built for 64-bit Windows and CPython 3.5: