# LLM **Repository Path**: halixiedun/llm ## Basic Information - **Project Name**: LLM - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-03-14 - **Last Updated**: 2025-03-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 创建虚环境 C:\Users\11584\AppData\Local\Programs\Python\Python311\python.exe -m venv myenv # 激活虚环境 myenv\Scripts\activate # 退出虚环境 deactivate # 下载包 pip install langchain pip install langchain_community # 安装langserve pip install "langserve[all]" pip install -U langchain-cli ## 使用langchain cli 命令创建新应用 langchain app new langserve ## 使用poetry 添加第三方包 ``` # 安装pipx pip install pipx # 加入到环境变量中,需要重启pycharm pipx ensurepath # 安装poetry pipx install poetry # 安装相关的库 poetry add langchain poetry add langchain-core poetry add langchain_community ```