解決方法
在http://www.lfd.uci.edu/~gohlke/pythonlibs/網頁上搜索CVXOPT
安裝成功之后 import cvxopt 提示,import cvxopt.base ImportError: DLL load failed: 找不到指定的模塊
解決方法:
卸載已經安裝的numpy
python -m pip uninstall numpy
重新安裝numpy
python -m pip install numpy
即可用正常使用cvxopt