mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-14 11:27:37 +08:00
11 lines
184 B
Python
11 lines
184 B
Python
import pip
|
|
|
|
|
|
def install(plugin_name) -> bool:
|
|
try:
|
|
pip.main(['install', plugin_name])
|
|
return True
|
|
except Exception as e:
|
|
print(e)
|
|
return False
|