Skip to content Skip to sidebar Skip to footer

Issue Installing Quantlib Python

I am trying to install QuantLib Python. So, I followed through and installed: 1) Anaconda3, boost_1_64_0, QuantLib-1.10, QuantLib-SWIG-1.10,swigwin-3.0.12. 2) I installed using Vi

Solution 1:

Your paths are correct, but Python is using Visual Studio 2015 (because it's what it was compiled with) and the library you have was produced with Visual Studio 2017. If you use the 2015 version throughout, it should work.

Solution 2:

I also met this question, the error info gives it cannot find vc140 lib file, which should be the result of vs2015. I tried on another PC with vs2015 and it did work.

If you find the version doesn't matter, here is another choice QL.whl. Finding your .whl file and install by

pip install [some.whl]

Post a Comment for "Issue Installing Quantlib Python"