File tree 2 files changed +89
-0
lines changed
2 files changed +89
-0
lines changed Original file line number Diff line number Diff line change
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
+ ```
Original file line number Diff line number Diff line change @@ -80,6 +80,11 @@ const sidebars = {
80
80
id : "guides/local-development" ,
81
81
label : "Local Development" ,
82
82
} ,
83
+ {
84
+ type : "doc" ,
85
+ id : "guides/wsl" ,
86
+ label : "WSL Setup" ,
87
+ } ,
83
88
] ,
84
89
} ,
85
90
{
You can’t perform that action at this time.
0 commit comments