def _check_dependencies(self):
not_found = []
for executable in REQUIRED_EXEC:
if not find_executable(executable):
not_found.append(executable)
if not_found:
raise CommandError('The following executables are required: %s, missing: %s' % (REQUIRED_EXEC, not_found))
评论列表
文章目录