gpt4 book ai didi

python - 如何通过运行 'python ...' 从 shell 启动 ipython?

转载 作者:太空狗 更新时间:2023-10-29 16:59:39 26 4
gpt4 key购买 nike

我想在 python 启动代码中添加一些命令行选项,以便实际调用 ipython shell。我该怎么做?

最佳答案

直接在 Python 中启动 IPython 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

关于python - 如何通过运行 'python ...' 从 shell 启动 ipython?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8491323/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com