From 08f33aafe0b19fd298805315c670c1071c8f4e7d Mon Sep 17 00:00:00 2001 From: Robert Chisholm Date: Fri, 22 Mar 2024 15:18:37 +0000 Subject: [PATCH] Update episodes/profiling-functions.md Co-authored-by: Neil Shephard --- episodes/profiling-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/profiling-functions.md b/episodes/profiling-functions.md index 4a3b88a..b9e23e5 100644 --- a/episodes/profiling-functions.md +++ b/episodes/profiling-functions.md @@ -211,7 +211,7 @@ As you hover each box, information to the left of the diagram updates specifying ## snakeviz Inside Notebooks -If you're more familiar with writing Python inside Jupyter notebooks, you might not feel comfortable using the command line for profiling. Instead, `snakeviz` can be called directly from inside notebooks, and it will automatically call `cProfile` for you. +If you're more familiar with writing Python inside Jupyter notebooks you can still use `snakeviz` directly from inside notebooks using the notebooks "magic" prefix (`%`) and it will automatically call `cProfile` for you. First `snakeviz` must be installed and it's extension loaded.