You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The show_subprocess_widget causes problems with systems not using ipython notebook (command line, spyder). A first approach to solving is was made in PR #278, but no definite conclusion was reached on how to solve it. There are a few options:
Merge add simple config system #308 (or some other config system) and then make all code loading the ipython widgets optional (with the default option: load the widgets, so there is no difference with current behaviour)
Do not load widgets at all by default. This means users have to specifically load the widgets
Use the PR do not load notebook elements when no notebook is running #278 (with some polishing). In this PR a function frontend() is introduced that determined whether the widgets are loaded or not. The function itself check an environment variable to determine whether we are in notebook mode or not
The
show_subprocess_widgetcauses problems with systems not using ipython notebook (command line, spyder). A first approach to solving is was made in PR #278, but no definite conclusion was reached on how to solve it. There are a few options:frontend()is introduced that determined whether the widgets are loaded or not. The function itself check an environment variable to determine whether we are in notebook mode or notshow_subprocess_widgetentirely@giulioungaretti @alexcjohnson