赞
踩
jupyte notebook是一个写程序的东西,像pycharm,idea一样可以写程序并运行,不过这最大的特点是在网页上运行,是的在网页上在你手机上也能写程序,不用下载软件。
条件一样,要python3和pip
使用cmd指令
pip3 install jupyter
就能安装
使用
jupyter notebook --generate-config
就能生成配置文件,再使用就问你是否覆盖(使用默认的覆盖),
生成后会出现路径,即配置文件的路径,进入使用note++打开修改配置文件
注:修改配置文件见其他博主
要注意的是配置文件是用python脚本写的,注意python的语法和缩进,我之前就是去了注释后没删除缩进导致配置文件出错。
- [E 15:32:20.568 NotebookApp] Exception while loading config file C:\Users\lalala\.jupyter\jupyter_notebook_config.py
- Traceback (most recent call last):
- File "c:\python\lib\site-packages\traitlets\config\application.py", line 738, in _load_config_files
- config = loader.load_config()
- File "c:\python\lib\site-packages\traitlets\config\loader.py", line 614, in load_config
- self._read_file_as_dict()
- File "c:\python\lib\site-packages\traitlets\config\loader.py", line 646, in _read_file_as_dict
- exec(compile(f.read(), conf_filename, 'exec'), namespace, namespace)
- File "C:\Users\lalala\.jupyter\jupyter_notebook_config.py", line 297
- c.NotebookApp.ip = '*'
- IndentationError: unexpected indent
即 IndentationError: unexpected indent
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。