bazarr/update_modules.py

21 lines
359 B
Python

import pip
try:
pip.main(['install', '--user', 'gitpython'])
except SystemExit as e:
pass
try:
pip.main(['install', '--user', 'langdetect'])
except SystemExit as e:
pass
try:
pip.main(['install', '--user', 'apprise'])
except SystemExit as e:
pass
try:
pip.main(['install', '--user', 'tzlocal'])
except SystemExit as e:
pass