Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 17 additions & 15 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,21 +134,23 @@ pip install -e .
```

!!! warning "Fortran compiler required"
Source builds require a working Fortran compiler (`gfortran` recommended) as well as
`meson` and `meson-python`.

```bash
# Debian/Ubuntu
sudo apt install gfortran

# Fedora
sudo dnf install gcc-gfortran

# macOS (Homebrew)
brew install gcc
```

On Windows, install MinGW-w64 with gfortran or use MSYS2.
Source builds require a working Fortran compiler. On most Linux distributions,
install `gfortran`:

=== "Debian / Ubuntu"
```bash
sudo apt install gfortran
```
=== "Fedora"
```bash
sudo dnf install gcc-gfortran
```
=== "macOS (Homebrew)"
```bash
brew install gcc
```
=== "Windows"
Install [MinGW-w64](https://www.mingw-w64.org/) with gfortran or use MSYS2.

## Verifying the installation

Expand Down
4 changes: 4 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ theme:
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.blocks.caption
- tables
- toc:
permalink: true
Expand All @@ -28,6 +29,9 @@ markdown_extensions:
- pymdownx.superfences
- pymdownx.highlight:
pygments_lang_class: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- pymdownx.arithmatex:
Expand Down
Loading