You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: notebooks/Python_HH_version/README.md
+32-1Lines changed: 32 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,5 +26,36 @@ This notebook was developed as part of [Google Summer of Code 2022 by Rahul Sonk
26
26
27
27
*Advantage: quick to start & run, no login required*
28
28
29
-
- The notebook can also be opened using [Binder](https://mybinder.org/). Click here to open the HH notebook: [](https://mybinder.org/v2/gh/openworm/hodgkin_huxley_tutorial/master?labpath=notebooks%2FPython_HH_version%2FPython_Notebook_HH.ipynb)
29
+
- The notebook can also be opened using [Binder](https://mybinder.org/). Click here to open the HH notebook: [](https://mybinder.org/v2/gh/openworm/hodgkin_huxley_tutorial/master?labpath=notebooks%2FPython_HH_version%2FPython_Notebook_HH.ipynb)-
30
30
- You should be able to run the interactive widget by click the double arrow (▶▶) in the JupyterLab toolbar at the top of the notebook.
31
+
32
+
### Option 3) Using Google Collab
33
+
34
+
*Advantage: can store your progress on your Google drive, but requires Google account and additional setup*
35
+
36
+
- The notebook can also be opened in [Google Collab](https://colab.research.google.com/github/openworm/hodgkin_huxley_tutorial/blob/master/notebooks/Python_HH_version/Python_Notebook_HH.ipynb), but you will need to add a new cell to the top of the notebook and paste the following to set it up to run properly:
37
+
38
+
39
+
```
40
+
from google.colab import output
41
+
output.enable_custom_widget_manager()
42
+
43
+
from google.colab import drive
44
+
drive.mount("/content/gdrive")
45
+
46
+
%cd /content/gdrive/MyDrive
47
+
!ls
48
+
!rm -rf hodgkin_huxley_tutorial # remove this line if you do not want to remove your existing copy to create a new one
0 commit comments