File tree 1 file changed +26
-1
lines changed
1 file changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,32 @@ Getting Started
30
30
1 . Download and run Ollama on your machine with ` ollama serve ` or ` ollama run <model-name> ` (it will run at: http://localhost:11434/ )
31
31
2 . Open a new terminal and navigate to the root of this project.
32
32
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 ` )
34
59
35
60
To-do
36
61
---------------
You can’t perform that action at this time.
0 commit comments