2015-09-21 import cvxopt failsΒΆ

The instruction import cvxopt sometimes fails with the following error:

ImportError: DLL load failed

According to this article import cvxopt.base: the specified module could not be found, numpy needs to be imported first:

import numpy
import cvxopt

And everything works fine.