Skip to content
Snippets Groups Projects
Commit 12615ef3 authored by Nicolas Martin's avatar Nicolas Martin :speech_balloon:
Browse files

Import Python script to check deps

parent 9ca9bef6
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
import sys, importlib
for argv in sys.argv[1:]:
try:
importlib.import_module(argv)
except ImportError:
print("Package %s is missing in Python 3" % argv)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment