Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
google-speech / bin_dep.py
Size: Mime:
import shutil


def check_bin_dependency(bins):
  for bin in bins:
    if shutil.which(bin) is None:
      raise RuntimeError("Binary '%s' could not be found" % (bin))