如何在 Windows 10 上安装 Jupyter Lab/Notebook?
How to install Jupyter Lab/Notebook on Windows 10?
我一直在 Macbook 上使用 R/Python 和 Jupyter Lab/Notebook。在我的新工作中,我需要在 Windows 10.
上安装并 运行 这些应用程序
我手动安装了 Python、pip、Jupyter、R4.1 和 RStudio(不是通过 Anaconda)。我尝试执行步骤 2/3:基于 installation guide 使内核对 Jupyter 可用。我在 R 控制台中收到错误消息。
> IRkernel::installspec()
Error in IRkernel::installspec() :
jupyter-client has to be installed but “jupyter kernelspec --version” exited with code 127.
In addition: Warning message:
In system2("jupyter", c("kernelspec", "--version"), FALSE, FALSE) :
'"jupyter"' not found
感谢您的建议。
请检查 jupyter 是否在您的 user/system 路径中。一种快速检查的方法是在命令行中使用 运行 jupyter,您可以使用 powershell 命令行:
Get-Command jupyter
CommandType Name Version Source
----------- ---- ------- ------
Application jupyter.exe 0.0.0.0 C:\Users\youruser\AppData\Local\Programs\...
如果它不存在,那么您可以添加到您的 system/user 路径并再次检查命令行的新实例。
我一直在 Macbook 上使用 R/Python 和 Jupyter Lab/Notebook。在我的新工作中,我需要在 Windows 10.
上安装并 运行 这些应用程序我手动安装了 Python、pip、Jupyter、R4.1 和 RStudio(不是通过 Anaconda)。我尝试执行步骤 2/3:基于 installation guide 使内核对 Jupyter 可用。我在 R 控制台中收到错误消息。
> IRkernel::installspec()
Error in IRkernel::installspec() :
jupyter-client has to be installed but “jupyter kernelspec --version” exited with code 127.
In addition: Warning message:
In system2("jupyter", c("kernelspec", "--version"), FALSE, FALSE) :
'"jupyter"' not found
感谢您的建议。
请检查 jupyter 是否在您的 user/system 路径中。一种快速检查的方法是在命令行中使用 运行 jupyter,您可以使用 powershell 命令行:
Get-Command jupyter
CommandType Name Version Source
----------- ---- ------- ------
Application jupyter.exe 0.0.0.0 C:\Users\youruser\AppData\Local\Programs\...
如果它不存在,那么您可以添加到您的 system/user 路径并再次检查命令行的新实例。