Skip to content

Commit c32d31e

Browse files
authored
Update README with v4 preview install instructions (#2750)
1 parent 177dd35 commit c32d31e

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,31 @@ The Azure Functions Core Tools provide a local development experience for creati
1818

1919
**v3**: (v3.x branch): Self-contained cross-platform package **(recommended)**
2020

21+
**v4**: (v4.x branch): Self-contained cross-platform package (preview)
22+
2123
## Installing
2224

2325
### Windows
2426

2527
#### To download and install with MSI:
2628

29+
##### v4 (preview)
30+
31+
- [Windows 64-bit](https://go.microsoft.com/fwlink/?linkid=2174087) (VS Code debugging requires 64-bit)
32+
- [Windows 32-bit](https://go.microsoft.com/fwlink/?linkid=2174159)
33+
2734
##### v3
2835

2936
- [Windows 64-bit](https://go.microsoft.com/fwlink/?linkid=2135274) (VS Code debugging requires 64-bit)
3037
- [Windows 32-bit](https://go.microsoft.com/fwlink/?linkid=2135275)
3138

3239
#### To install with npm:
3340

41+
##### v4 (preview)
42+
```bash
43+
npm i -g azure-functions-core-tools@4 --unsafe-perm true
44+
```
45+
3446
##### v3
3547
```bash
3648
npm i -g azure-functions-core-tools@3 --unsafe-perm true
@@ -43,6 +55,11 @@ npm i -g azure-functions-core-tools@2 --unsafe-perm true
4355

4456
#### To install with chocolatey:
4557

58+
##### v4 (preview)
59+
```bash
60+
choco install azure-functions-core-tools-4
61+
```
62+
4663
##### v3
4764
```bash
4865
choco install azure-functions-core-tools-3
@@ -62,6 +79,13 @@ choco install azure-functions-core-tools-2
6279

6380
#### Homebrew:
6481

82+
#### v4 (preview)
83+
84+
```bash
85+
brew tap azure/functions
86+
brew install azure-functions-core-tools@4
87+
```
88+
6589
##### v3
6690
```bash
6791
brew tap azure/functions
@@ -135,6 +159,12 @@ sudo chown root:root /etc/apt/sources.list.d/microsoft-prod.list
135159

136160
#### 2. Install
137161

162+
##### v4 (preview)
163+
```bash
164+
sudo apt-get update
165+
sudo apt-get install azure-functions-core-tools-4
166+
```
167+
138168
##### v3
139169
```bash
140170
sudo apt-get update

0 commit comments

Comments
 (0)