# jupyter-notebook **Repository Path**: royee0926/jupyter-notebook ## Basic Information - **Project Name**: jupyter-notebook - **Description**: No description available - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-18 - **Last Updated**: 2023-07-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README jupyter notebook设置: 1. 打开Anaconda Prompt,输入 jupyter notebook --generate-config 查看配置文件 2. 使用文本编辑器打开配置文件 3. 设置配置c.NotebookApp.notebook_dir如下: c.NotebookApp.notebook_dir = 'C:\dev\jupyter-notebook' 4. 通过Anaconda命令行输入命令:jupyter notebook 启动 直接指定笔记目录启动: jupyter notebook --notebook-dir='d:/下载' ############################################### # jupyter notebook打开比较显示 500解决: (问题报错的原因在于nbconvert版本不匹配,导致不兼容,需要进行更新。) 1. 进入conda 命令行 2. 执行以下命令: pip install --upgrade --user nbconvert # --upgrade 更新包 # --user 将Python包安装到系统目录 3. 如果以上命令无法解决,执行以下命令 pip install --upgrade "ipython[all]" # 更新ipython的全部包