@@ -75,27 +75,28 @@ language, very similar to the way it is right now.
75
75
Usually, installing V is quite simple if you have an environment that already has a
76
76
functional ` git ` installation.
77
77
78
- To get started, simply try to execute the following in your terminal/shell:
78
+ Note: On Windows, run ` make.bat ` instead of ` make ` in CMD, or ` ./make.bat ` in PowerShell.
79
+ Note: On Ubuntu/Debian, you may need to run ` sudo apt install git build-essential make ` first.
79
80
81
+ To get started, execute the following in your terminal/shell:
80
82
``` bash
81
83
git clone https://github.com/vlang/v
82
84
cd v
83
85
make
84
- # HINT: Using Windows? run make.bat in a cmd shell, or ./make.bat in PowerShell
85
86
```
86
87
87
- That should be it and you should find your V executable at ` [path to V repo]/v ` .
88
+ That should be it, and you should find your V executable at ` [path to V repo]/v ` .
88
89
` [path to V repo] ` can be anywhere.
89
90
90
- (As in the hint above, on Windows ` make ` means running ` make.bat ` .)
91
+ (Like the note above says , on Windows, use ` make.bat ` , instead of ` make ` .)
91
92
92
- Now you can try ` ./v run examples/hello_world.v ` (or ` v run examples/hello_world.v ` in cmd shell).
93
+ Now try running ` ./v run examples/hello_world.v ` (or ` v run examples/hello_world.v ` in cmd shell).
93
94
94
- - * Trouble? Please see the note above and link to
95
+ - * Trouble? Please see the notes above, and link to
95
96
[ Installation Issues] ( https://github.com/vlang/v/discussions/categories/installation-issues )
96
97
for help.*
97
98
98
- V is constantly being updated. To update V, simply run:
99
+ Note: V is being constantly updated. To update V to its latest version , simply run:
99
100
100
101
``` bash
101
102
v up
0 commit comments