overview | launching the notebooks | running the notebooks | issues | contributing
This is a repo of notebooks and interactive examples for http://em.geosci.xyz. They are tutorials on the use of SimPEG for forward modelling and inversion of DC, frequency domain EM, and time domain EM.
The notebooks are available on
The notebooks can be run online through Binder or Azure notebooks, or downloaded and run locally.
-
Launch the binder by clicking on the badge above or going to: https://mybinder.org/v2/gh/simpeg/em-notebooks/master?filepath=index.ipynb. This can sometimes take a couple minutes, so be patient...
-
Select the notebook of interest from the contents
-
Navigate to Azure notebooks by clicking on the badge above or going to: https://notebooks.azure.com/import/gh/simpeg/em-notebooks, and select
Import
to import the library -
Sign in to your microsoft account (or
Create One
if you do not already have an account) -
Create the new library: Select Import
-
Select
index.ipynb
to view the notebook contents -
Select the notebook of interest from the contents
To run them locally, you will need to have python installed, preferably through anaconda.
You can then clone this reposiroty. From a command line, run
git clone https://github.com/simpeg/em-notebooks.git
Then cd
into em-notebooks
cd em-notebooks
To setup your software environment, we recommend you use the provided conda environment
conda env create -f environment.yml
source activate em-notebooks-environment
alternatively, you can install dependencies through pypi
pip install -r requirements.txt
You can then launch Jupyter
jupyter notebook index.ipynb
Jupyter will then launch in your web-browser.
Note: these notebooks make use of ipywidgets
, if you do not already have ipywidgets
installed, please follow the ipywidgets installation instructions.
Each cell of code can be run with shift + enter
or you can run the entire notebook by selecting cell
, Run All
in the toolbar.
For more information on running Jupyter notebooks, see the Jupyter Documentation
If you run into problems or bugs, please let us know by creating an issue in this repository.