V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
sadhen
V2EX  ›  Python

管理 Jupyter Notebooks 的最佳实践(简化版)

  •  
  •   sadhen ·
    darcy-shen · 2022-11-07 14:56:22 +08:00 · 1965 次点击
    这是一个创建于 527 天前的主题,其中的信息可能已经有所发展或是发生改变。

    这里有一个复杂一些的版本:管理 Jupyter Labs 和 Notebooks 的最佳实践

    在今天的最佳实践中,我们解决的是,只有一个 requirements.txt 文件的这种情况。

    上次的最佳实践,解决的是多个 requirements.txt 文件和多个目录的情况(启动 JupyterLab 的脚本会自动将该目录设置为根目录)。

    马上试用

    马上试用 Jupyter Notebook 最佳实践模版: https://github.com/da-tubi/jupyter-notebook-best-practice

    git clone下来就可以用,或者使用 Github 那个绿色按钮Use this template

    如何使用

    下面简单说一下用法:

    1. bin/lab可以直接启动 JupyterLab
    2. 改 requirements.txt 的话,直接在notebooks/BUILD.pants里面改

    另外,遇到什么问题,直接按照bin/lab的提示,就可以了。

    Q: 为什么我没有找到requirements.txt?

    A: 这里的requirements.txt,只是打个比方,具体使用了那些 Python 的包,可以在notebooks/BUILD.pants里面找到。

    Q: 我在notebooks/BUILD.pants增加了 pytorch 这个依赖,为什么还是无法在 notebook 里面import pytorch

    A: 更改依赖这个操作不是立即生效的,你仍旧需要使用bin/lab重新启动一下 JupyterLab (遇到什么问题,按照提示做即可)。

    增删 requirements 的贴心教程

    notebooks/BUILD.pants的内容预览:

    # Put your dependencies in the requirements
    
    jupyter_lab(name="default", requirements=["pyspark==3.3.0"])
    

    如果你需要增加 pytorch 这个依赖,只要改成这样就可以了:

    # Put your dependencies in the requirements
    
    jupyter_lab(name="default", requirements=["pyspark==3.3.0", "pytorch"])
    
    sadhen
        1
    sadhen  
    OP
       2022-11-07 18:17:04 +08:00
    一个以上述最佳实践为模版的项目: https://github.com/da-tubi/rikai-example2
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5245 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 30ms · UTC 05:42 · PVG 13:42 · LAX 22:42 · JFK 01:42
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.