运行时运行Jupyter和Notebook问题的pip3安装

时间:2020-06-28 21:34:07

标签: python pip jupyter-notebook jupyter

我已经在这里尝试了所有的东西,并且在其他站点上都没有喜悦...

请多多指教。

我已经使用pip3安装了Jupyter和Notebook-请注意,在执行更新之前,我已经更新了pip3。

但是,当尝试检查jupyter --versionnotebook --version的版本时,我的终端机将返回no command found。我还尝试运行jupyter,notebook和jupyter笔记本,但仍然收到相同的消息。

我已经花了将近两天的时间来解决这个问题...我正要放弃。

我觉得这与我的PATH变量有关,也许不指向jupyter可执行文件的存储位置,但是我不知道如何找出笔记本和jupyter在系统上的存储位置。

非常感谢

鲍比

5 个答案:

答案 0 :(得分:4)

即使PATH变量未正确设置,您也应该能够使用python -m运行jupyter。

python -m jupyter notebook

如果使用Windows搜索功能搜索env,然后单击Edit the system environment variables> Environment Variables...,则可以在Windows上检查PATH变量。 path变量是终端检查命令的路径的列表。

我很久没有在Mac上工作了,所以不确定linux和mac命令行的相似程度如何,但是在debian上,您可以像这样控制路径变量。 查看路径:

echo $PATH
/usr/local/bin:/usr/bin:/bin

添加路径:

export PATH=$PATH:/mynewpath

要不断导出,请添加到~/.bashrc

要查看pip包的路径,可以使用

pip3 show jupyter

jupyter-notebook有效而jupyter notebook不有效时。在我看来,这就像一个符号链接的东西。或Mac特有的问题。

答案 1 :(得分:1)

我在Jupyter https://jupyter-notebook.readthedocs.io/en/stable/troubleshooting.html的文档中找到了一种解决方案,但我仍然很好奇。

它指出要运行该应用程序以使用命令contentItem: RowLayout{ Text{ id: nameText text: modelData.name Layout.preferredWidth: parent.width / 3 Layout.alignment: Text.AlignRight } Text{ text: modelData.isActive Layout.preferredWidth: parent.width / 3 Layout.alignment: Text.AlignRight } Text{ text: modelData.age Layout.preferredWidth: parent.width / 3 Layout.alignment: Text.AlignRight } } ,嘿!现在看来确实可行。但是,为什么当我几乎在其他任何地方都读过要运行该应用程序时,只需键入命令jupyter-notebook

此外,如果jupyter notebookjupyter --version仍然无法正常工作,如果我确实需要检查任何Jupyter文件的版本,现在该如何处理。

此外,如果不知道它们在哪里,该如何在文件系统中查找这些文件?以及如何将它们添加到我的路径中,以便例如可以检查这些程序的版本?

pip3会在需要时自动更新此软件吗?

再次感谢

答案 2 :(得分:1)

您尝试过anaconda吗?它可能会告诉您jupyter在系统上的位置。 另外,为什么不尝试通过implementation 'org.parceler:parceler-api:1.1.12' annotationProcessor 'org.parceler:parceler:1.1.12' 安装jupyter来避免麻烦呢?

答案 3 :(得分:1)

因此,总结一下(根据我的经验),这是我在此问题上发现的:

要运行jupyter应用程序,可以使用jupyter-notebook命令,此方法有效,但是为什么呢?这是因为jupyter-notebook存储在usr/local/bin中,而该{通常会始终存储在PATH变量中。

然后我发现,如果执行以下操作,则jupyter notebookjupyter --version命令现在可以使用:

  1. 打开我的./bash_profile文件
  2. 在文件底部添加以下内容:export PATH=$PATH:/Users/your-home-directory/Library/Python/3.7/bin

这应将jupyter所在的位置添加到您的路径变量中。

或者,按照@HackLab的建议,我们还可以执行以下操作:

  • python3 -m jupyter notebook

希望这将使其他遇到相同问题的人都比我更容易解决此问题。

答案 4 :(得分:0)

我绝对会建议您通过anaconda进行操作,这会使一切变得容易得多。 以下是逐步说明的链接:https://jupyter.readthedocs.io/en/latest/install.html