diff --git a/myresources/crocodile/run.py b/myresources/crocodile/run.py index e115f13f..0755b533 100644 --- a/myresources/crocodile/run.py +++ b/myresources/crocodile/run.py @@ -112,6 +112,9 @@ def build_parser(): else: # just run croshell.py interactively res = f"{interpreter} {interactivity} --profile {get_ipython_profile(P.cwd())} --no-banner -m crocodile.croshell" # --term-title croshell + from IPython import start_ipython + start_ipython(argv=res.split(' ')[1:]) + return # Clear-Host; # # --autocall 1 in order to enable shell-like behaviour: e.g.: P x is interpretred as P(x)