jupyter-client has to be installed but “jupyter kernelspec --version” exited with code 127

后端 未结 17 1749
再見小時候
再見小時候 2020-12-23 20:35

I have already installed Jupyter notebook in my ubuntu 16.04 machine. In jupyter notebook there is by default python installed. Now I want to use R from jupyter notebook.

17条回答
  •  隐瞒了意图╮
    2020-12-23 21:15

    Running this command from RStudio will show this error. When you run this command from command line/ terminal then everything will be fine.

    So just type R from your command line.

    Then Run below commands:

    install.packages('devtools')
    
    devtools::install_github('IRkernel/IRkernel')
    

    enter image description here

    IRkernel::installspec()
    

提交回复
热议问题