【jupyter】文件路径的更改
使用过 jupyter notebook 环境的同行, 都体会过随机生成 .html 静态网页的过程, 虽然文档较小, 但是不堪反复使用积少成多。本文基于windows系统。
找到 runtime 目录
一般 jupyter 默认 runtime 在下述格式目录中
C:\Users\用户名\AppData\Roaming\jupyter\runtime
复制一套 .html, .json 文件 (注意编号一致) 到期望的目录 “D://path/to/your/custom/” 。
cmd 环境下的python
建立 .bat 文件
@echo off
start "Jupyter Server" cmd /k jupyter notebook
start "" "file:///D:/path/to/your/custom/htmlfile.html"
双击运行 .bat 文件
conda 环境下的 python
建立 .bat 文件
@echo off
call D:\path\miniconda3\Scripts\activate.bat
start "Jupyter Server" cmd /k jupyter notebook
start "" "file:///D:/path/to/your/custom/htmlfile.html"
双击运行 .bat 文件
原文地址:https://blog.csdn.net/serpenttom/article/details/143780599
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!