# langchainAi **Repository Path**: ice-li/langchain-ai ## Basic Information - **Project Name**: langchainAi - **Description**: 学习langchain - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-01-01 - **Last Updated**: 2026-01-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 创建一个新的项目在虚拟环境中进行创建 基于python3.12.0创建一个虚拟环境 python -m venv .venv #软件包 pip install langchain langchain-openai dotenv git 本地项目初始化git,并推送到gittee git init git add . 添加忽略文件.gitignore git commit -m "first commit" 关联远程changku git remote add origin https://github.com/your_username/your_repo_name.git 先查看本地分支名称 git branch # 推送本地 main 分支到远程 origin 仓库的 main 分支(-u 建立追踪关系) git push -u origin main