Skip to content

Instantly share code, notes, and snippets.

@schnell18
Created April 19, 2020 10:22
Show Gist options
  • Save schnell18/a7a12c2ed5cea261b76240d822568ae2 to your computer and use it in GitHub Desktop.
Save schnell18/a7a12c2ed5cea261b76240d822568ae2 to your computer and use it in GitHub Desktop.
Load line_profiler and memory_profiler

Introduction

install line_profiler module

conda install line_profiler

load line_profiler into ipython on startup

cat<<EOF > ~/.ipython/profile_default/startup/001-load-line-profiler.ipy
%load_ext line_profiler
EOF

install memory_profiler module

conda install memory_profiler

load memory_profiler into ipython on startup

cat<<EOF > ~/.ipython/profile_default/startup/002-load-memory-profiler.ipy
%load_ext memory_profiler
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment