Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 580 Bytes

README.md

File metadata and controls

22 lines (19 loc) · 580 Bytes

EM_Course_IntroToML_2022_Summer

Displaying Multiple output in vscode jupyter notebooks

One time solution

Copy and Paste the following code into one of the cells, run the cell

from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"

Permanent solution

Go to the following path:

C:\Users\your_profile\\.ipython\profile_default

Create a file named ipython_config.py Copy and paste the following code into that file:

c = get_config()

c.InteractiveShell.ast_node_interactivity = "all"