Skip to content

Latest commit

 

History

History
65 lines (35 loc) · 2.22 KB

INSTALL.md

File metadata and controls

65 lines (35 loc) · 2.22 KB

DEVSIM Installation

Introduction

Please visit the DEVSIM homepage at https://devsim.org for the latest information concerning the availability of the software.

Installing the Binary Package

Prerequisites

Windows

This runtime may be necessary to run the software.

Install Anaconda Python

Please note that most Python 3 environments should work. The Anaconda distributions are recommended since they provide ready access to the Intel Math Kernel Library (MKL). As of DEVSIM version 2.1.0, you can configure the software to load alternative libraries implementing the math library functions.

Install Anaconda or Miniconda environment.

From a system command prompt, with an active Python environment, install the MKL.

conda install mkl numpy

or alternatively,

pip install mkl numpy

Please note it is not recommended to mix pip and Anaconda versions of these packages.

Install DEVSIM

Python Package Download Using pip

It is now possible to download and install devsim using pip.

pip install devsim

Alternative Package Download

Binary releases are available from Zenodo, or from GitHub. Uncompress the file to the desired directory. The preferred installation method is to install the .whl file using pip.

Basic Test

You should then be able to run an example in the testing directory.

cd testing
python cap2.py

If using the pip installed version, the data files should be available in your environment in the devsim_data directory.

Troubleshooting

If you have any issues with this process. Please contact us through the DEVSIM forum at https://forum.devsim.org.

Building from Source

Please see BUILD.md for instructions for building from source.