Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 449 Bytes

File metadata and controls

17 lines (14 loc) · 449 Bytes
  • Install dependencies
    • Simple
      pip install .
    • Complex
      pip install -e ".[notebook,dev,docs]"
  • To launch your Marimo notebook
    marimo edit my_notebook.py

Using Poetry

  • Install the core dependencies AND the 'notebook' and 'dev' groups
    poetry install --with notebook,dev

  • Instead of just 'pytest', you run:
    poetry run pytest

  • To launch your Marimo notebook:
    poetry run marimo edit notebooks/analysis.py