Installing RKernel

后端 未结 1 1705
南笙
南笙 2020-12-22 12:09

Despite all my efforts, I wasn\'t able to install the R kernel for my IPython/Jupyter notebook on Canopy.

I\'ve closely followed the clear instructions given in: htt

相关标签:
1条回答
  • 2020-12-22 12:45

    It turns out that the file "jupyter-kernelspec " was corrupted for some reason. I replaced it by the following code:

    #!/usr/bin/env python
    from jupyter_client.kernelspecapp import KernelSpecApp
    def main():
        KernelSpecApp.launch_instance()
    if __name__ == '__main__':
        main()
    

    It solved my issue.

    Julien

    0 讨论(0)
提交回复
热议问题