I want to import CVXOPT functionalities for use in the Canopy python editor. As far as I know, I have downloaded CVXOPT successfully. My reason for thinking this is that the CVXOPT site says "to test that the installation was successful, go to the examples directory and try one of the examples", and I am able to do this in the command line without any errors.
However, in my python code, when I say
from cvxopt import matrix, spmatrix, solvers, mul, div
I get an error saying "No module named CVXOPT". I think the problem must be simple but fiddling around for awhile hasn't fixed the problem. Any ideas?