【发布时间】:2019-08-22 01:05:43
【问题描述】:
我想从终端启动 Jupyterlab
我使用的是 MacOS 10.14。
我用 Homebrew 安装了 Python
我尝试使用brew install jupyterlab 安装 Jupyter 实验室,但它给了我以下错误消息:
Error: No available formula with the name "jupyterlab"
==> Searching for a previously deleted formula (in the last month)...
Warning: homebrew/core is shallow clone. To get complete history run:
git -C "$(brew --repo homebrew/core)" fetch --unshallow
Error: No previously deleted formula found.
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching taps...
==> Searching taps on GitHub...
Error: No formulae found in taps.
我尝试使用pip3 使用命令pip3 install jupyterlab 安装它。有效。但是当我尝试使用命令jupyter lab 启动它时,我收到以下错误消息:
执行 Jupyter 命令“实验室”时出错:
[Errno 2] No such file or directory
当我运行命令brew list时,jupyterlab不在列表中
我怀疑问题在于pip3 和homebrew 管理路径的方式不同,问题就出在那儿。我该怎么办
【问题讨论】:
标签: python-3.x pip homebrew jupyter-lab