Search code examples
pythonanacondaquantlib

No module named 'quantlib'


I installed quantlib via conda install -c tonyroberts quantlib, and i also have this in anaconda's installed libs: enter image description here

but i have an error

import quantlib as ql

ModuleNotFoundError: No module named 'quantlib'


Solution

  • You should import it as:

    import QuantLib as ql