本文介绍了导入cvxopt.base:找不到指定的模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是Python的新手,刚刚为我的Python3.3系统(64位)安装了cvxopt模块.安装成功,但是当我在Python命令行中键入"import cvxopt"
时,它返回错误:
I'm new to Python, just installed cvxopt module for my Python3.3 system (64 bit). The installation was successful, but when I typed "import cvxopt"
in Python command line, it returned an error:
有人可以帮助我解决这个问题吗?非常感谢!
Could anyone help me on this problem? Thanks a lot!
推荐答案
在导入cvxopt之前,您需要先导入numpy.
You need to import numpy first before importing cvxopt.
import numpy
import cvxopt
这篇关于导入cvxopt.base:找不到指定的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!