推荐学习书目
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 · Nov 7, 2022 · 2678 views
    This topic created in 1282 days ago, the information mentioned may be changed or developed.

    这里有一个复杂一些的版本:管理 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
       Nov 7, 2022
    一个以上述最佳实践为模版的项目: https://github.com/da-tubi/rikai-example2
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   934 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 37ms · UTC 20:50 · PVG 04:50 · LAX 13:50 · JFK 16:50
    ♥ Do have faith in what you're doing.