0

我通过 Anaconda 安装了 Qiskit,并在 Python 3.8 中设置了一个虚拟环境。当我运行(.venv) C:\Users\brenm>jupyter notebook(在 Anaconda 提示符下)它失败并抛出'jupyter' is not recognized as an internal or external command, operable program or batch file.

为了解决这个问题,我运行(.venv) C:\Users\brenm>python -m pip install jupyter --user并正确安装了 jupyter notebook。但是当我jupyter notebook在 Anaconda 提示符下运行时,它仍然会抛出'jupyter' is not recognized as an internal or external command, operable program or batch file.

我对正在发生的事情感到非常困惑,因为我相信 jupyter notebook 是应该已经安装的 Qiskit 依赖项。更重要的是,我很困惑为什么当我手动安装 jupyter notebook 时,jupyter notebook无法识别该命令。

4

1 回答 1

0

既然你确定你的 Python 库路径在你的系统变量中,你可以试试这个命令: python -m notebook

于 2020-12-23T18:06:47.340 回答