Windows10下不通过Anaconda通过pip安装Jupyter notebook

Jupyter notebook 安装 (前提是电脑上已经安装了python3.0以上版本):
进入命令行窗口,切换到python目录下的Scripts目录下
输入: pip install jupyter就可以进行安装了
但是安装过程中可能会报超时错误而安装失败,这主要是因为用这种方法安装太慢了。电脑超过一定时间没有安装成功就会以失败处理。
这时可以通过输入pip --default-timeout=1000 install -U jupyter命令来安装,就可以安装成功了。
这个命令是把超时时间设的很大。(没有办法,这种方法下载时间就是很长,十几兆的东西要下半个小时还多)
安装完成之后jupyter notebook的启动:
命令行窗口输入: jupyter notebook就可以启动jupyter notebook
配置 Jupyter notebook :
命令行窗口输入:jupyter notebook --generate-config
生成默认配置文件到C:\Users\Administrator.jupyter\jupyter_notebook_config.py
打开jupyter_notebook_config.py搜索c.NotebookApp.notebook_dir
把#号去掉,把值改为你要存放Jupyter notebook文件的目录路径。
以后Jupyter notebook创建的文件都会保存到这个目录路径中。
这是我在亲自安装试验过的,当时在网上找了好些资料才装好。把我的经验写在这里,希望对大家有所帮助。
其实Anaconda挺强大的,用Anaconda装Jupyter notebook挺方便的,网上教程也很多。主要是Anaconda比较大。(没有办法,我就是不想装Anaconda)

你可能感兴趣的:(windows,不通过Anaconda,Jupyter,notebook安装)