Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. ## Check Jupyter Kernel Spec List
  2.  
  3. `jupyter kernelspec list` <br>
  4. Which displays available python version in the jupyter kernel <br>
  5.  
  6. ## Adding Python2 to the Jupyter Kernel
  7.  
  8. `python2.7 -m pip install --upgrade ipykernel` <br>
  9. `python2.7 -m ipykernel install` <br>
  10.  
  11. Check for the installed python2 version in the kernel <br>
  12. `jupyter kernelspec list` <br>
  13.  
  14. ## Adding Python3 to the Jupyter Kernel
  15.  
  16. `python3.6 -m pip install --upgrade ipykernel` <br>
  17. `python3.6 -m ipykernel install --user` <br>
  18.  
  19. Check for the installed python3 version in the kernel <br>
  20. `jupyter kernelspec list` <br>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement