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
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