gpt4 book ai didi

python - 如何编写脚本 bash 以在 jupyter-notebook 中输入多行输入?

转载 作者:行者123 更新时间:2023-11-28 22:13:11 26 4
gpt4 key购买 nike

我只需要在一个单元格中编写一个带有配置环境的脚本。我想保留缩进

!(python --version
which python
pip --version
conda --version
which conda) >> config-environment.txt

但单元格不接受在每个命令之间跳行。怎么写?是否可以在 jupyter-notebook 中编写缩进的 bash 脚本?

最佳答案

对于您的特定情况,您可以简单地在末尾使用分号来运行它,即

!(python --version; \
which python; \
pip --version; \
conda --version; \
which conda) >> config-environment.txt

对于一般情况,您可以使用 %%bash在 bash 中运行单元的单元魔术命令,即

%%bash script magic

Run cells with bash in a subprocess.

%%bash

(python --version
which python
pip --version
conda --version
which conda) >> config-environment.txt

你也可以看看subprocess python模块。

关于python - 如何编写脚本 bash 以在 jupyter-notebook 中输入多行输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54162361/

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