aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authormilancurcic <caomaco@gmail.com>2021-03-17 10:53:55 -0400
committermilancurcic <caomaco@gmail.com>2021-03-17 10:53:55 -0400
commit5130eb14f775f79d6652bf471a309f4bf26bc290 (patch)
treeb7874fcadc8e0a6bcb0dd04c81cadce23b94129f /README.md
parent482a52bab1e25497819ffbbb99fab45df9c59406 (diff)
downloadfpm-5130eb14f775f79d6652bf471a309f4bf26bc290.tar.gz
fpm-5130eb14f775f79d6652bf471a309f4bf26bc290.zip
add Sebastian's Conda instructions
Diffstat (limited to 'README.md')
-rw-r--r--README.md25
1 files changed, 23 insertions, 2 deletions
diff --git a/README.md b/README.md
index be96b4f..e4dca52 100644
--- a/README.md
+++ b/README.md
@@ -17,14 +17,35 @@ To report a bug report or suggest a feature, please read our
## Getting started
-### Binary download
+### Setting up fpm
+
+#### Binary download
`x86-64` binaries are available [to download](https://github.com/fortran-lang/fpm/releases) for Windows, MacOS and Linux.
__Note:__ On Linux and MacOS, you will need to enable executable permission before you can use the binary.
_e.g._ `$ chmod u+x fpm-v0.1.0-linux-x86_64`
-__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.
+#### Conda
+
+If you haven't yet, first enable the conda-forge channel:
+
+```
+conda config --add channels conda-forge
+```
+
+Fpm can be installed with:
+
+```
+conda create -n fpm fpm
+conda activate fpm
+```
+
+#### 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.
+
+#### Bootstraping on other platforms
For other platforms and architectures have a look at the [bootstrapping instructions](#bootstrapping-instructions).