Skip to content

Instantly share code, notes, and snippets.

@Swarchal
Created August 4, 2017 12:19
Show Gist options
  • Save Swarchal/bb08f805d40a436c47b234d85f9a7515 to your computer and use it in GitHub Desktop.
Save Swarchal/bb08f805d40a436c47b234d85f9a7515 to your computer and use it in GitHub Desktop.
test if running within ipython
def run_from_ipython():
try:
__IPYTHON__
return True
except NameError:
return False
@Swarchal
Copy link
Author

Swarchal commented Aug 4, 2017

if run_from_ipython():
    %matplotlib

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment