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: README.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Extension for 3D Slicer that allows the application to be used from Jupyter note
9
9
10
10
You can use this option for a quick start. No installation or setup is needed, just click the link below and start using Slicer via Jupyter notebook in your web browser.
When you click on the link, Binder launches 3D Slicer with SlicerJupyter extension on their cloud servers. Binder is a free service and server resources are quite limited. Also, there is no interactive access to the graphical user interface. Therefore, this option is only recommended for testing, demos, or simple computations or visualizations.
15
15
@@ -22,10 +22,22 @@ When you click on the link, Binder launches 3D Slicer with SlicerJupyter extensi
22
22
* You can choose any Python version and any bitness (Python 3, 64-bit is recommended)
23
23
* Adding Python to your PATH environment variable or registering as default Python is not required
24
24
* Install [3D Slicer](https://download.slicer.org/), start it, and install SlicerJupyter extension in its Extension Manager, restart 3D Slicer
25
+
* Install Python packages in 3D Slicer's Python console by copy-pasting these lines:
26
+
```
27
+
import os
28
+
if os.name=='nt':
29
+
# There are no official pyzmq wheels for Python-3.6 for Windows, so we have to install manually
0 commit comments