iracket 找不到 jupyter,即使它已经安装
iracket can't find jupyter, even though it's already installed
尝试安装 iracket 内核时,抛出
cannot find jupyter executable
我已经把 python 和 racket 放在了 PATH 中,我不知道它是否有帮助,但是当输入命令 raco iracket check
时它抛出我
IRacket install-history file: "C : \ Users \ lenovo \ AppData \ Roaming \ Racket \ iracket.rktd "
file exists ?: no
Cannot find jupyter executable.
我的电脑是windows10。
我使用 pip 安装 jupyter
iracket install 命令需要运行 jupyter.exe
命令来找到存放Jupyter 内核的目录。所以你需要找到 pip 安装的位置 jupyter.exe
然后将包含 jupyter.exe
的目录添加到你的 PATH,或者你需要 运行 iracket 安装脚本 raco iracket install --jupypter-exe path-to-jupyter.exe
.
尝试安装 iracket 内核时,抛出
cannot find jupyter executable
我已经把 python 和 racket 放在了 PATH 中,我不知道它是否有帮助,但是当输入命令 raco iracket check
时它抛出我
IRacket install-history file: "C : \ Users \ lenovo \ AppData \ Roaming \ Racket \ iracket.rktd "
file exists ?: no
Cannot find jupyter executable.
我的电脑是windows10。 我使用 pip 安装 jupyter
iracket install 命令需要运行 jupyter.exe
命令来找到存放Jupyter 内核的目录。所以你需要找到 pip 安装的位置 jupyter.exe
然后将包含 jupyter.exe
的目录添加到你的 PATH,或者你需要 运行 iracket 安装脚本 raco iracket install --jupypter-exe path-to-jupyter.exe
.