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
31 changes: 17 additions & 14 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,20 +97,23 @@ This invokes the `meson` build system to compile the C sources via `f2py`
and install the resulting extension module.

!!! warning "C compiler required"
Source builds require a working C compiler.

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

# Fedora
sudo dnf install gcc

# macOS (Clang via Xcode Command Line Tools)
xcode-select --install
```

On Windows, install MSVC via Visual Studio Build Tools. MinGW is not supported.
Source builds require a working C compiler. On most Linux distributions,
install `gcc`:

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

## Verifying the installation

Expand Down
24 changes: 14 additions & 10 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,25 @@ theme:
- content.code.copy

markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.blocks.caption
- tables
- fenced_code
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight
- toc:
permalink: true
title: Page contents
- admonition
- pymdownx.details
- 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:
generic: true
- toc:
permalink: true

extra_javascript:
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
Expand Down
Loading