Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conda-package #39

Merged
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ test/input_files/**/*.json
**/scratch/

# Test microstructure files
!sphere.h5
!sphere32.h5

# Test input files
!test_LinearElastic.json
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,19 @@
apt install packages/fans-dev_<version>_<architecture>.deb
```

### Install using Conda
sanathkeshav marked this conversation as resolved.
Show resolved Hide resolved

[![Anaconda-Server Badge](https://anaconda.org/conda-forge/fans/badges/version.svg)](https://anaconda.org/conda-forge/fans)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/fans/badges/platforms.svg)](https://anaconda.org/conda-forge/fans)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/fans/badges/downloads.svg)](https://anaconda.org/conda-forge/fans)

FANS is also available as a conda-package on [conda-forge](https://anaconda.org/conda-forge/fans). No dependencies have to be manually installed for it to workl.
IshaanDesai marked this conversation as resolved.
Show resolved Hide resolved
It can be installed via
```sh

Check failure on line 155 in README.md

View workflow job for this annotation

GitHub Actions / Lint markdown files

Fenced code blocks should be surrounded by blank lines [Context: "```sh"]
sanathkeshav marked this conversation as resolved.
Show resolved Hide resolved
conda install fans
```

Check failure on line 157 in README.md

View workflow job for this annotation

GitHub Actions / Lint markdown files

Fenced code blocks should be surrounded by blank lines [Context: "```"]
sanathkeshav marked this conversation as resolved.
Show resolved Hide resolved
exposing the executable `FANS`.

## Input File Format
sanathkeshav marked this conversation as resolved.
Show resolved Hide resolved

FANS requires a JSON input file specifying the problem parameters. Example input files can be found in the [`test/input_files`](test/input_files) directory. It is recommended to use these files as a reference to create your own input file.
Expand Down
Loading