mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-22 16:23:28 +01:00
14 lines
239 B
Python
14 lines
239 B
Python
'''
|
|
This script checks if the given modules exist
|
|
'''
|
|
|
|
import sys
|
|
import pkgutil
|
|
|
|
modules = sys.argv[1:]
|
|
missing_modules = []
|
|
for m in modules:
|
|
if pkgutil.find_loader(m) is None:
|
|
print('module', m, 'not found')
|
|
exit(1)
|