mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 19:37:36 +08:00
25 lines
657 B
Python
25 lines
657 B
Python
from pip._internal import main as pipmain
|
|
|
|
# from . import log
|
|
|
|
|
|
def install(package):
|
|
pipmain(['install', package])
|
|
# log.reset_logging()
|
|
|
|
def install_upgrade(package):
|
|
pipmain(['install', '--upgrade', package, "-i", "https://pypi.tuna.tsinghua.edu.cn/simple",
|
|
"--trusted-host", "pypi.tuna.tsinghua.edu.cn"])
|
|
# log.reset_logging()
|
|
|
|
|
|
def run_pip(params: list):
|
|
pipmain(params)
|
|
# log.reset_logging()
|
|
|
|
|
|
def install_requirements(file):
|
|
pipmain(['install', '-r', file, "-i", "https://pypi.tuna.tsinghua.edu.cn/simple",
|
|
"--trusted-host", "pypi.tuna.tsinghua.edu.cn"])
|
|
# log.reset_logging()
|