标签: python subprocess png dot treemodel
我正在使用
check_call(['dot', '-Tpng', 'tree.dot', '-o', 'tree.png'])
但我得到了
FileNotFoundError:[Errno 2]没有这样的文件或目录:' dot'
当我指定替换'dot'我得到的路径
'dot'
PermissionError:[Errno 13]权限被拒绝
我使用import os检查我当前的工作目录,这是正确的。 为什么它仍然没有说这样的文件?