-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Patrick Diehl
committed
Aug 14, 2024
1 parent
29f9bb1
commit fdce69d
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
layout: post | ||
title: "Installing HPX" | ||
date: 2024-08-13 14:34:25 | ||
categories: building | ||
tags: cmake | ||
--- | ||
In this blog post, we will provide more details on how to install HPX on your ssytem. | ||
|
||
## Fedora Linux | ||
|
||
On Fedora we mantain the [HPX package](https://packages.fedoraproject.org/pkgs/hpx/) and the package can be installed as follows: | ||
|
||
|
||
{% highlight bash %} | ||
# Shared memory version | ||
sudo dnf install hpx-devel | ||
# Distributed memory version | ||
sudo dnf install hpx-mpich-devel | ||
{% endhighlight %} | ||
|
||
|