mirror of https://github.com/morpheus65535/bazarr
21 lines
359 B
Python
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 |