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
+26-3Lines changed: 26 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,14 +17,38 @@ 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
+
Fpm is available on conda-forge, to add conda-forge to your channels use:
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
+
The conda package manager can be installed from [miniforge](https://github.com/conda-forge/miniforge/releases)
45
+
or from [miniconda](https://docs.conda.io/en/latest/miniconda.html).
46
+
47
+
#### Github Actions
48
+
49
+
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.
50
+
51
+
#### Bootstraping on other platforms
28
52
29
53
For other platforms and architectures have a look at the [bootstrapping instructions](#bootstrapping-instructions).
30
54
@@ -94,4 +118,3 @@ with itself and run the tests with:
0 commit comments