人工智能 | 计算机视觉 | 深度学习

0%

python-让jupyter notebook支持python3

  • 安装完jupyter notebook之后,默认只支持python2。
  • 其实jupyter还支持非常多的编程语言。点击jupyter kernels list查看jupyter支持哪些语言。

支持Python 3

  • 命令行执行下面的命令
1
2
pip3 install ipykernel
python3 -m ipykernel install
  • 重启jupyter
1
jupyter notebook
  • 此时,发现可以新建python3的notebook了。

参考