安装vscode,node,anaconda

时间:2018-04-13 17:55:34

标签: python visual-studio-code anaconda

我的讲师上传了一个YouTube视频,解释了如何激活节点和anaconda。我安装了节点,anaconda(和通过安装anaconda的vscode)。

在视频中,他说我们可以通过输入cmd来检查anaconda是否安装得当 jupiter --version,然后应在屏幕上显示该版本。我收到了消息:

'jupiter' is not recognized as an internal or external command, operable 
program or batch file.

我如何解决这个问题,以便能看到版本?非常感谢。

1 个答案:

答案 0 :(得分:0)

@sini指出,您需要检查jupyter --version而不是jupiter --version

如果没有安装jupyter 你需要安装jupyter

python3 -m pip install jupyter

对于Windows,请获取help

您可以通过pip freeze命令验证是否已安装juypter

  jupyter==1.0.0
  jupyter-client==5.2.3
  jupyter-console==5.2.0
  jupyter-core==4.4.0 ....