1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2024-11-03 12:43:55 +01:00

Fix .local

This commit is contained in:
Anthony Scemama 2023-12-09 15:10:43 +01:00
parent 442f0a2704
commit 9ac9ad1eb8

View File

@ -46,11 +46,14 @@ requirements.
In environments where `sudo` access is unavailable, a common workaround for In environments where `sudo` access is unavailable, a common workaround for
executing `make install/uninstall` commands without requiring superuser executing `make install/uninstall` commands without requiring superuser
privileges involves a modification to the `./configure` command. Specifically, privileges involves a modification to the `./configure` command.
one can substitute the standard `./configure` with `./configure This modification typically includes specifying an installation prefix within
prefix=$HOME/.local`. The directory `$HOME/.local` is frequently utilized for the user's home directory to circumvent the need for system-wide installation
installing software within user space, serving as an alternative to the permissions. For instance, `./configure prefix=$HOME/.local` can be employed,
system-wide `/usr/local`. where `$HOME/.local` is often recommended for user-space software installations.
However, this is merely a suggestion, and users are free to choose any suitable
directory as their installation prefix, depending on their specific
requirements and system configurations.
Regarding the integration with an MPI (Message Passing Interface) enabled HDF5 Regarding the integration with an MPI (Message Passing Interface) enabled HDF5
library, it's typical to specify the MPI compiler wrapper for the C compiler. library, it's typical to specify the MPI compiler wrapper for the C compiler.