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
+23-2Lines changed: 23 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,14 +17,35 @@ To report a bug report or suggest a feature, please read our
17
17
18
18
## Getting started
19
19
20
-
### Binary download
20
+
### Setting up fpm
21
+
22
+
#### Binary download
21
23
`x86-64` binaries are available [to download](https://github.com/fortran-lang/fpm/releases) for Windows, MacOS and Linux.
22
24
23
25
__Note:__ On Linux and MacOS, you will need to enable executable permission before you can use the binary.
24
26
25
27
_e.g._`$ chmod u+x fpm-v0.1.0-linux-x86_64`
26
28
27
-
__Github actions:__ to setup *fpm* within Github actions for automated testing, you can use the [fortran-lang/setup-fpm](https://github.com/marketplace/actions/setup-fpm) action.
29
+
#### Conda
30
+
31
+
If you haven't yet, first enable the conda-forge channel:
32
+
33
+
```
34
+
conda config --add channels conda-forge
35
+
```
36
+
37
+
Fpm can be installed with:
38
+
39
+
```
40
+
conda create -n fpm fpm
41
+
conda activate fpm
42
+
```
43
+
44
+
#### Github Actions
45
+
46
+
To setup *fpm* within Github actions for automated testing, you can use the [fortran-lang/setup-fpm](https://github.com/marketplace/actions/setup-fpm) action.
47
+
48
+
#### Bootstraping on other platforms
28
49
29
50
For other platforms and architectures have a look at the [bootstrapping instructions](#bootstrapping-instructions).
0 commit comments