无法使用键盘快捷键在 conda 环境中启动 jupyter

无法使用键盘快捷键在 conda 环境中启动 jupyter

我想从 conda 打开 Jupyter 激活 tensorflow 环境。以下所有命令都可以在终端中正常运行,但在 Gnome 中设置键盘快捷键时在“命令”选项卡中输入它们时则不行。

  1. source activate tensorflow; jupyter notebook;

  2. source activate tensorflow || jupyter notebook

  3. source activate tensorflow && jupyter notebook

  4. 将其写入.sh文件中并执行按键:

    source activate tensorflow
    jupyter notebook
    

知道为什么它不工作以及如何使它工作吗?我不想为每个快捷键设置 2 个单独的快捷键。

相关内容