2
0

check_python_packages.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import sys
  2. import pkg_resources
  3. import subprocess
  4. def check_packages(packages):
  5. missing_packages = []
  6. for package in packages:
  7. try:
  8. pkg_resources.require(package)
  9. except pkg_resources.DistributionNotFound:
  10. missing_packages.append(package)
  11. return missing_packages
  12. def install_packages(packages):
  13. for package in packages:
  14. try:
  15. print(f"Installing {package}...")
  16. subprocess.check_call([sys.executable, "-m", "pip", "install", package])
  17. except subprocess.CalledProcessError:
  18. print(f"Failed to install {package}.")
  19. return False
  20. return True
  21. required_packages = ["protobuf", "grpcio-tools"]
  22. missing_packages = check_packages(required_packages)
  23. if missing_packages:
  24. print("Missing required Python packages:", ", ".join(missing_packages))
  25. if install_packages(missing_packages):
  26. missing_packages = check_packages(required_packages)
  27. if missing_packages:
  28. print("Still missing required Python packages after installation attempt:", ", ".join(missing_packages))
  29. sys.exit(1)
  30. else:
  31. sys.exit(1)
  32. print("All required Python packages are installed.")
  33. # Check for the marker file path argument
  34. if len(sys.argv) < 2:
  35. print("Error: No marker file path provided.")
  36. sys.exit(1)
  37. marker_file_path = sys.argv[1]
  38. with open(marker_file_path, "w") as marker_file:
  39. marker_file.write("Python packages check completed successfully.")
  40. sys.exit(0)