如何在Windows10中安装Jupyter Notebook

如何在Windows10中安装Jupyter Notebook


如果还没有安装Python3的可以移步另一篇“如何在win10中安装配置Python3”
只需一步:
pip安装 Jupyter Notebook

这里两个版本安装上jupyter notebook

python -m pip install --upgrade pip --force-reinstall
python -m pip install jupyter


安装成功后直接运行

jupyter notebook

这里有一个小技巧可以分享一下: 我们每次启动 jupyter notebook都需要打开在cmd输入 jupyter notebook, 尤其是有时候还需要cd进某文件夹。
 因此,可以新建一个txt文件,用以下语句写一个BAT脚本,保存为   jupyter notebook.bat
rem -- start_jupyter_notebook.bat ---
jupyter notebook
pause

将该BAT文件放在你想放置的文件位置中,再将文件的快捷方式发送至桌面,就可以方便启动了!

启动jupyter notebook之后, 可以看到只有一个kernel存在。







呼~结束
By  robotzzg(2hi 9uo



你可能感兴趣的:(Python语言,机器学习基础)