Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion tools/Python/mcrun/template.ipynb.in
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,15 @@
"outputs": [],
"source": [
"# Visualise with default parameters (defaults to 'webgl-classic' visualisation - specify by format='window' for pyqtgraph)\n",
"instr.show_instrument()"
"instr.show_instrument()\n",
"# If you get no output in the IFrame (especially on Windows) try one of these alternatives:\n",
"#\n",
"# For stand-alone Pyqtgraph window, use:\n",
"# instr.show_instrument('window')\n",
"# For interactive webgl in new tab, use:\n",
"# instr.show_instrument('webgl',new_tab='true')\n",
"# For webgl-classic in new tab, use:\n",
"# instr.show_instrument('webgl-classic',new_tab='true')"
]
},
{
Expand Down
Loading