You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
Each of the tutorials below provides a step by step examination and walkthrough of a specific Fn feature or component. Check back soon as new tutorials are being added regularly.
4
4
5
5
## Introduction to Fn
6
-
Before deploying your first function, you need to [install the Fn cli and start an Fn Server](install/README.md).
6
+
Before deploying your first function, you need to [install the Fn CLI and start an Fn Server](install/README.md).
7
7
8
8
Now that the Fn Server is up and running, you can deploy your first function. Select your preferred language:
Copy file name to clipboardExpand all lines: install/README.md
+8-12Lines changed: 8 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,12 +13,10 @@ Setting up a working Fn installation involves these three simple steps:
13
13
14
14
Before we can install Fn you'll need:
15
15
16
-
1. A computer running Linux or MacOS. If you have a Windows machine the
17
-
easiest thing to do is install [VirtualBox](https://www.virtualbox.org/)
18
-
and run a free Linux virtual machine.
19
-
2.[Docker](https://www.docker.com/) 17.10 (or higher) needs to be
16
+
1. A computer running Linux, MacOS or Windows.
17
+
2.[Docker](https://www.docker.com/) 17.10 (or higher), Podman (5.7.0 or higher) or Rancher Desktop (1.22.0 or higher) needs to be
20
18
installed and running.
21
-
* **Note:**Version 0.6.12+ of the Fn CLI added Podman support. To use Podman to build Fn images, see: [Using Fn with Podman instead of Docker](https://github.com/fnproject/docs/blob/master/fn/develop/podman.md)
19
+
* **Note:**For Fn to work with Podman, please check out: [Using Fn with Podman instead of Docker](https://github.com/fnproject/docs/blob/master/fn/develop/podman.md)
22
20
23
21
> As you make your way through this tutorial, look out for this icon.
24
22
 Whenever you see it, it's time for you to
@@ -38,12 +36,14 @@ Or, alternatively for Linux/Unix/MacOS from a terminal type the following:
38
36
> curl -LSs https://raw.githubusercontent.com/fnproject/cli/master/install | sh
39
37
>```
40
38
39
+
For Windows, you could download the binary from the release page: https://github.com/fnproject/cli/releases
40
+
41
41
Once installed you'll see the Fn CLI version printed out. You should see
42
42
something similar to the following displayed (although likely with a later
43
43
version number):
44
44
45
45
```txt
46
-
fn version 0.5.86
46
+
fn version 0.6.48
47
47
______
48
48
/ ____/___
49
49
/ /_ / __ \
@@ -145,8 +145,8 @@ You should see the version of the Fn CLI (client) and server displayed (your
145
145
version will likely differ):
146
146
147
147
```txt
148
-
Client version: 0.5.86
149
-
Server version: 0.3.728
148
+
Client version: 0.6.48
149
+
Server version: 0.3.768
150
150
```
151
151
152
152
**Note:**
@@ -320,10 +320,6 @@ You can confirm using the `which fn` command, the output should look like `/User
320
320
(Alternatively, you can use `~/lbin/fn` if you don't want to add to your `PATH` environment variable.)
321
321
322
322
323
-
#### For Windows Systems
324
-
The best way forWindows users is to run Fn inside a Linux virtual machine eitherin the cloud or using [VirtualBox](https://www.virtualbox.org/) locally.
325
-
326
-
327
323
## Learn More
328
324
329
325
Congratulations! You've installed Fn and started up an Fn server. Now you are
0 commit comments