Skip to content

Commit 39e1c9c

Browse files
committed
add git clone and uv tip
1 parent b01e276 commit 39e1c9c

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

units/en/unit3/build-mcp-server.mdx

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,30 @@ You'll implement three essential tools that establish patterns for the entire au
5252

5353
### Starter Code
5454

55+
Clone the starter code repository:
56+
57+
```bash
58+
git clone https://github.com/huggingface/mcp-course.git
59+
```
60+
5561
Navigate to the starter code directory:
5662

5763
```bash
58-
cd projects/unit3/build-mcp-server/starter
64+
cd mcp-course/projects/unit3/build-mcp-server/starter
5965
```
6066

6167
Install dependencies:
6268

69+
<Tip>
70+
71+
You might want to create a virtual environment for this project:
72+
73+
```bash
74+
uv venv .venv
75+
source .venv/bin/activate # On Windows use: .venv\Scripts\activate
76+
```
77+
</Tip>
78+
6379
```bash
6480
uv sync --all-extras
6581
```

0 commit comments

Comments
 (0)