# llmops **Repository Path**: bitpx/llmops ## Basic Information - **Project Name**: llmops - **Description**: No description available - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-04-26 - **Last Updated**: 2026-05-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 一、配置pip的下载镜像源 ```shell # 1. 让 pip 走清华镜像下载(提速) pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple # 2. 让 pip 信任清华网站(不报错、不拦截) pip config set global.trusted-host pypi.tuna.tsinghua.edu.cn ``` # 二、运行本项目需要先安装的工具 ```shell # --no-deps 表示不安装pipreqs依赖的其他包 pip install --no-deps pipreqs pip install ipython==8.12.3 nbconvert==7.11.0 pip install yarg==0.1.9 docopt==0.6.2 pip install openai pip install python-dotenv pip install -r requirements.txt pip install -U Flask-WTF ```