欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

安装jupyter notebook

程序员文章站 2022-07-14 11:51:47
...

首先我使用的是公司的openstack平台开启的虚拟机,找到了一个已经安装python3.6的镜像,然后就直接使用啦啦啦啦。(简单粗暴的安装,其他介绍看下一篇了)


安装jupyter notebook

因为这个镜像不是我的,我在环境变量配置里找到python的目录

安装jupyter notebook

根据这个路径找到python的位置,打开进入Scripts目录

然后打开cmd执行下面的命令

cd ..\..

cd C:\Users\Administrator\AppData\Local\Programs\Python\Python36\Scripts
pip install jupyter

安装jupyter notebook安装jupyter notebook安装jupyter notebook

然后执行jupyter notebook

jupyter notebook
安装jupyter notebook

然后就自动出现这个界面了

安装jupyter notebook

可是每次启动都需要在这个目录下,下面修改一个文件,就可以啦啦

配置Jupyter Notebook的默认开启目录 
打开命令窗口(运行->cmd)输入

 jupyter notebook --generate-config
  • 1

然后会提示文件的所在目录 

安装jupyter notebook

按照提示打开文件目录,找到 jupyter_notebook_config.py文件 

安装jupyter notebook

使用文本编译器打开 

找到#c.NotebookApp.notebook_dir = '' 这行 

安装jupyter notebook

将‘#’号删除,然后在后面输入你需要的目录 

如我的默认目录c.NotebookApp.notebook_dir = 'C:\Users\Administrator' (因为打开cmd就是这个目录哈哈哈)

安装jupyter notebook

点击保存之后就可以直接使用啦

安装jupyter notebook

下面来简单使用了

安装jupyter notebook

安装jupyter notebook

相关标签: jupyter