我是python的初学者。
当我尝试spinner1.setOnItemSelectedListener(new OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parentView, View selectedItemView, int position, long id) {
// your code here
}
@Override
public void onNothingSelected(AdapterView<?> parentView) {
// your code here
}
}
时,出现错误。
我想执行chainer。
python chainer/examples/mnist/train_mnist.py
如何解决此错误?
答案 0 :(得分:2)
当我尝试在Mac Os El Captain中进行opencv工作时,我得到了类似的日志。经过一段时间的尝试,我通过从homebrew卸载numpy然后从pip完成它。看起来他们在哪里发生冲突。之后,只需通过自制软件安装它就可以了。
brew uninstall numpy
pip uninstall numpy
brew install numpy
如果没有尝试从自制程序重新安装python并确保您拥有xcode命令行工具:
xcode-select --install
希望它有所帮助。