How to install langchain-ai/langchain-academy. Official installation instructions. Project installation guide. Framework or library installation. Build installation instructions. How to setup and install from GitHub. Installation steps and setup instructions. Official docs and installation instructions GitHub.
langchain-ai/langchain-academy Installation Guide
How to install langchain-ai/langchain-academy. Official project installation instructions and setup guide.
⚡
Automated Install (Recommended)
Quick installation instructions for langchain-ai/langchain-academy. This is the fastest way to complete project installation and setup.
Install via curl
curl -fsSL https://hexmos.com/ipm-install | bash &&
ipm i langchain-ai/langchain-academyor
Install via npx
npx @hexmos/ipm i langchain-ai/langchain-academyPrerequisites
Python
languageVersion: >=3.11,<3.14
git
version control systemJupyter
toolOpenAI API Key
api keyLangSmith API Key
api keyTavily API Key
api keyManual Installation Methods
Manual installation instructions. How to install from GitHub source.
Mac/Linux/WSL
git clone https://github.com/langchain-ai/langchain-academy.git
cd langchain-academy
python3 -m venv lc-academy-env
source lc-academy-env/bin/activate
pip install -r requirements.txt
jupyter notebookWindows Powershell
git clone https://github.com/langchain-ai/langchain-academy.git
cd langchain-academy
python3 -m venv lc-academy-env
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
.\lc-academy-env\Scripts\Activate.ps1
pip install -r requirements.txt
jupyter notebookLangGraph Studio Local Development Server
git clone https://github.com/langchain-ai/langchain-academy.git
cd langchain-academy
source lc-academy-env/bin/activate
for i in {1..5}; do cp module-$i/studio/.env.example module-$i/studio/.env; echo "OPENAI_API_KEY=\"$OPENAI_API_KEY\"" > module-$i/studio/.env; done
echo "TAVILY_API_KEY=\"$TAVILY_API_KEY\"" >> module-4/studio/.env
cd module-1/studio
langgraph dev