Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 477 Bytes

rich.md

File metadata and controls

19 lines (15 loc) · 477 Bytes

Rich extension

The Rich library has an IPython extension that prettifies cell outputs in Jupyter Notebooks. You can add this line to your IPython profile to enable this extension by default for all notebooks:

try:
    import rich

    c.InteractiveShellApp.extensions.append("rich")
except ImportError:
    pass

The default location for the profile is ~/.ipython/profile_default/ipython_config.py