LiteyukiBot/src/plugins/liteyuki_plugin_npm/installer.py

11 lines
184 B
Python
Raw Normal View History

import pip
def install(plugin_name) -> bool:
try:
pip.main(['install', plugin_name])
return True
except Exception as e:
print(e)
return False