Before running these notebooks, you will need to install Bempp. These notebooks are designed to be run with Bempp version 0.2.3. These instructions will tell you how to install this version.
Before installing Bempp, you will need to install a few prerequisites:
pip install plotly numpy scipy numba meshio>=4.0.16
You can then install Bempp 0.2.3 with:
pip install git+https://github.com/bempp/bempp-cl.git
(Note that Bempp can be installed from pip by running pip install bempp-cl
or conda forge by running conda install bempp-cl
, but this will currently install version 0.1.0 which is missing a few features and bugfixes that we need.)
This error is caused by an incompatible (newer) version of numba being used with some (older) versions of Bempp. It can be fixed by running:
pip install numba==0.48.0
This error is caused by an incompatible (older) version of numba being used with some (newer) versions of Bempp. It can be fixed by running:
pip install numba==0.50.1
If you're running inside a Jupyter notebook, you need to install plotly. You can do this by running
pip install plotly