bazarr/update_modules.py

16 lines
273 B
Python
Raw Normal View History

2017-12-30 13:09:51 +08:00
import pip
try:
pip.main(['install', '--user', 'gitpython'])
2018-01-11 00:44:47 +08:00
except SystemExit as e:
pass
try:
pip.main(['install', '--user', 'langdetect'])
except SystemExit as e:
pass
try:
pip.main(['install', '--user', 'apprise'])
2017-12-30 13:09:51 +08:00
except SystemExit as e:
pass