fix: 修复相对路径导致的windows启动器无法安装依赖的问题

This commit is contained in:
Soulter
2024-05-26 18:15:25 +08:00
parent 6c856f9da2
commit fa44749240
+3 -3
View File
@@ -8,10 +8,8 @@ from logging import Formatter, Logger
from util.cmd_config import CmdConfig, try_migrate_config
warnings.filterwarnings("ignore")
abs_path = os.path.dirname(os.path.realpath(sys.argv[0])) + '/'
logger: Logger = None
logo_tmpl = """
___ _______.___________..______ .______ ______ .___________.
/ \ / | || _ \ | _ \ / __ \ | |
@@ -35,9 +33,11 @@ def update_dept():
'''
# 获取 Python 可执行文件路径
py = sys.executable
requirements_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "requirements.txt")
print(requirements_path)
# 更新依赖库
mirror = "https://mirrors.aliyun.com/pypi/simple/"
os.system(f"{py} -m pip install -r requirements.txt -i {mirror}")
os.system(f"{py} -m pip install -r {requirements_path} -i {mirror}")
def main():
try: