From 81f511622f797138a6f447714dad2e6638147e51 Mon Sep 17 00:00:00 2001 From: Teagan King <98482480+TeaganKing@users.noreply.github.com> Date: Wed, 3 Jul 2024 10:35:02 -0600 Subject: [PATCH 1/2] Update README.md to include fix for ipykernel issue --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index de40497..2b663f5 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,14 @@ $ cupid-build # Will build HTML from Jupyter Book After the last step is finished, you can use Jupyter to view generated notebooks in `${CUPID_ROOT}/examples/coupled-model/computed_notebooks/quick-run` or you can view `${CUPID_ROOT}/examples/coupled-model/computed_notebooks/quick-run/_build/html/index.html` in a web browser. +Notes: + +1. Some people seem to be getting the following error: `Environment cupid-analysis specified for .ipynb could not be found`. The fix for this seems to be the following: + ``` bash + $ conda activate cupid-analysis + (cupid-analysis) $ python -m ipykernel install --user --name=cupid-analysis + ``` + Furthermore, to clear the `computed_notebooks` folder which was generated by the `cupid-run` and `cupid-build` commands, you can run the following command: ``` bash From f504b673103579ee6e368f71bdd71e3af0d5442b Mon Sep 17 00:00:00 2001 From: Teagan King <98482480+TeaganKing@users.noreply.github.com> Date: Wed, 3 Jul 2024 11:33:36 -0600 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b663f5..524bb3d 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ or you can view `${CUPID_ROOT}/examples/coupled-model/computed_notebooks/quick-r Notes: -1. Some people seem to be getting the following error: `Environment cupid-analysis specified for .ipynb could not be found`. The fix for this seems to be the following: +1. Occasionally users report the following error the first time they run CUPiD: `Environment cupid-analysis specified for .ipynb could not be found`. The fix for this is the following: ``` bash $ conda activate cupid-analysis (cupid-analysis) $ python -m ipykernel install --user --name=cupid-analysis