Installation instructions¶
biops can be installed with pip or conda.
pip install biops
or
conda install -c omvatten biops
Recommended installation procedure¶
The recommended method is to download Anaconda or Miniconda
Open the Anaconda or Miniconda prompt (a terminal window).
Create a new environment. You can, for example, call it biops_env. Then, activate the environment.
conda create -n biops_env python=3.9
conda activate biops_env
Install biops using:
conda install pandas numpy matplotlib scipy
pip install biops
To start using biops, you need some way of writing and executing Python code. I use Spyder or Jupyter notebooks. You can install Spyder like this:
conda install spyder
To run Spyder, simply type:
spyder
You can install Jupyter like this:
conda install jupyter
To start a Jupyter notebook, simply type:
jupyter notebook
To check if biops works, you can run the following code:
import biops
r = biops.ifas.Reactor()
r.view_process()
Hopefully, this will plot a figure showing a reactor followed by a settler.