我正在使用Keras-CNN-fashion-mnist,并且在运行代码时遇到以下错误。该如何解决?
# Input data files are available in the "../input/" directory.
# For example, running this (by clicking run or pressing Shift+Enter) will list the files in the input directory
from subprocess import check_output
print(check_output(["ls", "data"]).decode("utf8"))
我遇到以下错误
CalledProcessErrorTraceback(最近一次通话) 在()中 6 7从子流程导入check_output ----> 8 print(check_output([“ ls”,“ data”])。decode(“ utf8”))
在check_output中的/usr/local/lib/python2.7/subprocess.pyc(* popenargs, ** kwargs) 221如果cmd为None: 222 cmd = popenargs [0] -> 223引发CalledProcessError(retcode,cmd,output = output) 224返回输出 225
CalledProcessError:命令'['ls','data']'返回非零退出 状态2
您知道是什么原因导致此错误吗?