Getting Started
Install from source
Download Miniconda and add conda-forge to the channels:
$ conda config --add channels conda-forge
Clone from the GitHub repository
$ git clone https://github.com/mpvanderschelling/testthings.git
Create a new environment from the f3dasm_environment.yml file
$ cd testthings
$ conda env create -f f3dasm_environment.yml
Test if the installation was successful
$ conda activate f3dasm_env
$ make test-smoke
If the smoke tests pass the installation is successful! Now install the package in editable mode:
$ pip install -e .
You can now use import f3dasm
$ python
>>> import f3dasm
If no errors occur when importing the package, then you have succesfully installed the f3dasm package!