Skip to content

Commit a937ef4

Browse files
committed
Added the fix for this richawo#10
as the syntax ? was update on the new JS version after 14.0.1 Changes made on ReadMe
1 parent eea2edd commit a937ef4

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

README.md

+26-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,32 @@ Getting Started
3030
1. Download and run Ollama on your machine with `ollama serve` or `ollama run <model-name>` (it will run at: http://localhost:11434/)
3131
2. Open a new terminal and navigate to the root of this project.
3232
3. Install the dependencies `npm install` in your terminal.
33-
4. Start the tool by running `npm run dev` (it should be available in your web browser at `http://localhost:3000`)
33+
34+
4. Also check whether your node by doing:
35+
```
36+
node -v
37+
```
38+
If it is less than 14.0.1.
39+
You can do this to update it:
40+
- Install n using npm (Node.js package manager):
41+
42+
- bash:
43+
44+
```
45+
npm install -g n
46+
```
47+
Use n to install a specific Node.js version:
48+
bash:
49+
```
50+
n 20.0.9
51+
```
52+
Verify the Node.js version:
53+
- bash
54+
```
55+
node -v
56+
```
57+
58+
5. Start the tool by running `npm run dev` (it should be available in your web browser at `http://localhost:3000`)
3459

3560
To-do
3661
---------------

0 commit comments

Comments
 (0)