From ad6c889cca7eba150ac63a6fe444f37af8a49a10 Mon Sep 17 00:00:00 2001 From: Yuan-Man <68322456+Yuan-ManX@users.noreply.github.com> Date: Thu, 25 Jul 2024 15:38:40 +0800 Subject: [PATCH] Update README.md --- README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cf5031263..2f12a160c 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,9 @@ The Stack consists of toolchain-apis and agentic-apis. This repo contains the to You can install this repository as a [package](https://pypi.org/project/llama-toolchain/) by just doing `pip install llama-toolchain` -If you want to install from source: +### Install from conda +If you want to install from source: ```bash mkdir -p ~/local cd ~/local @@ -21,6 +22,26 @@ cd llama-toolchain pip install -e . ``` +### In Linux + +```bash +python3 -m venv venv +source venv/bin/activate + +pip install llama-toolchain +``` + +### For Windows + +```bash +python -m venv venv +venv\Scripts\activate # For Command Prompt +# or +.\venv\Scripts\Activate.ps1 # For PowerShell + +pip install llama-toolchain +``` + ## Test with cli We have built a llama cli to make it easy to configure / run parts of the toolchain