如何从shell启动ipython,运行’python …’?

前端之家收集整理的这篇文章主要介绍了如何从shell启动ipython,运行’python …’?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想为 python启动代码添加一些命令行选项,以便实际调用一个ipython shell.我怎么做?
要在 Python中直接启动I Python shell:
from IPython import embed

a = "I will be accessible in IPython shell!"

embed()

或者,简单地从命令行运行它:

$python -c "from IPython import embed; embed()"

embed将使用shell内的所有局部变量.

如果要提供自定义的本地(在shell中可访问的变量),请查看IPython.terminal.embed.InteractiveShellEmbed

原文链接:https://www.f2er.com/bash/383797.html

猜你在找的Bash相关文章