Skip to content

Commit c3f8487

Browse files
authored
Merge pull request #983 from ileana-pr/add-wsl-guide
docs: add WSL Setup Guide to documentation
2 parents 8f1ce72 + 89b7413 commit c3f8487

File tree

2 files changed

+89
-0
lines changed

2 files changed

+89
-0
lines changed

docs/docs/guides/wsl.md

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
---
2+
sidebar_position: 5
3+
title: WSL Setup Guide
4+
description: Guide for setting up Eliza on Windows using WSL (Windows Subsystem for Linux)
5+
---
6+
7+
# WSL Setup Guide
8+
Steps to run Eliza on Windows computer using WSL.
9+
[AI Dev School Tutorial](https://www.youtube.com/watch?v=ArptLpQiKfI)
10+
11+
12+
## Install WSL
13+
14+
1. Open PowerShell as Administrator and run:
15+
```powershell
16+
wsl --install
17+
```
18+
19+
2. Restart your computer
20+
3. Launch Ubuntu from the Start menu and create your Linux username/password
21+
22+
## Install Dependencies
23+
24+
1. Update Ubuntu packages:
25+
```bash
26+
sudo apt update && sudo apt upgrade -y
27+
```
28+
29+
2. Install system dependencies:
30+
```bash
31+
sudo apt install -y \
32+
build-essential \
33+
python3 \
34+
python3-pip \
35+
git \
36+
curl \
37+
ffmpeg \
38+
libtool-bin \
39+
autoconf \
40+
automake \
41+
libopus-dev
42+
```
43+
44+
3. Install Node.js via nvm:
45+
```bash
46+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
47+
source ~/.bashrc
48+
nvm install 23
49+
nvm use 23
50+
```
51+
52+
4. Install pnpm:
53+
```bash
54+
curl -fsSL https://get.pnpm.io/install.sh | sh -
55+
source ~/.bashrc
56+
```
57+
58+
## Optional: CUDA Support
59+
60+
If you have an NVIDIA GPU and want CUDA support:
61+
62+
1. Install CUDA Toolkit on Windows from [NVIDIA's website](https://developer.nvidia.com/cuda-downloads)
63+
2. WSL will automatically detect and use the Windows CUDA installation
64+
65+
## Clone and Setup Eliza
66+
67+
Follow the [Quickstart Guide](../quickstart.md) starting from the "Installation" section.
68+
69+
## Troubleshooting
70+
71+
- If you encounter `node-gyp` errors, ensure build tools are installed:
72+
```bash
73+
sudo apt install -y nodejs-dev node-gyp
74+
```
75+
76+
- For audio-related issues, verify ffmpeg installation:
77+
```bash
78+
ffmpeg -version
79+
```
80+
81+
- For permission issues, ensure your user owns the project directory:
82+
```bash
83+
sudo chown -R $USER:$USER ~/path/to/eliza
84+
```

docs/sidebars.js

+5
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,11 @@ const sidebars = {
8080
id: "guides/local-development",
8181
label: "Local Development",
8282
},
83+
{
84+
type: "doc",
85+
id: "guides/wsl",
86+
label: "WSL Setup",
87+
},
8388
],
8489
},
8590
{

0 commit comments

Comments
 (0)