mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-26 09:37:25 +00:00
16 lines
No EOL
273 B
Python
16 lines
No EOL
273 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 |