安装jupyter notebook的流程(注意python至少需要3.6版本)
- python -m pip install jupyter #安装jupyter
- python -m pip install –upgrade juypter #更新升级
注:这个会比较慢,最好设置时间,或者利用镜像更新
设置时间:python -m pip –default-timeout=300 install –upgrade juypter
利用镜像:python -m pip install –upgrade -i https://pypi.tuna.tsinghua.edu.cn/simple juypter
3.更新结束后,输入jupyter notebook。
如果报错:
'jupyter' 不是内部或外部命令,也不是可运行的程序或批处理文件。
(1) 首先添加python路径到path中,如果还是不行
(2) 命令改为jupyter.py notebook或者 python -m jupyter notebook
如果报错:
ImportError: cannot import name 'constants' from 'zmq.backend.cython'
则重装pyzmq,先卸载,后重装
python -m pip uninstall pyzmq
python -m pip install pyzmq
----------------------------------------更新----------------------------------------------------------------
4.成功打开jupyter notebook之后,页面打开.ipynb文件,但是报错kerrnel error :import win32api:找不到指定模块
打开python测试,已安装pywin32,但是导入为win32api不成功,
经测试,卸载pywin32 后,重新安装就可以了,原因未明……