大家好,我有一点问题,我正在尝试使用pickle加载文件(下面的代码),这段代码在我的合作伙伴的笔记本电脑(mac book)上完美运行,但是在我的笔记本电脑上它赢了不运行(Windows)。
imageView.setColorFilter(ContextCompat.getColor(context,R.color.blue));
使用该代码加载文件后,我收到了EOFError。
strPath = openFileDialog.GetPath()
self.model = cPickle.load(open(strPath, 'rb'))
self.loadModelCombo.SetValue(strPath)