RoyalGoose
RoyalGoose

Reputation: 523

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'

Upvotes: 0

Views: 752

Answers (1)

David Duarte
David Duarte

Reputation: 664

You should import it as:

import QuantLib as ql

Upvotes: 2

Related Questions