When building the book with jupyter-book build --all content I receive the following warnings:
WARNING: Execution Failed with traceback saved in /Users/USER/projects/mimic_wfdb_tutorials/content/_build/html/reports/data-exploration.log
WARNING: Execution Failed with traceback saved in /Users/USER/projects/mimic_wfdb_tutorials/content/_build/html/reports/data-extraction.log
WARNING: Execution Failed with traceback saved in /Users/USER/projects/mimic_wfdb_tutorials/content/_build/html/reports/data-visualisation.log
The logs includes the following error:
------------------
# setup
import sys
import wfdb
------------------
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Input In [1], in <cell line: 3>()
1 # setup
2 import sys
----> 3 import wfdb
ModuleNotFoundError: No module named 'wfdb'
ModuleNotFoundError: No module named 'wfdb'
Presumably we need to add wfdb to requirements.txt
When building the book with
jupyter-book build --all content
I receive the following warnings:The logs includes the following error:
Presumably we need to add
wfdb
to requirements.txt