Last updated

Quick Start: Run Notebooks Locally

  1. Clone the repo:

    git clone https://github.com/dataloop-ai/dtlpy-documentation.git
    cd dtlpy-documentation
  2. (Recommended) Create a virtual environment:

    python -m venv venv
    # Activate:
    # On Windows:
    venv\Scripts\activate
    # On Mac/Linux:
    source venv/bin/activate
  3. Install requirements:

    pip install -r requirements.txt
    pip install notebook  # if not already installed
  4. Start Jupyter:

    jupyter notebook
    • Open your browser to the Jupyter page if it doesn't open automatically.
    • Navigate to the notebooks/ folder and open any .ipynb file.

Tips & Troubleshooting

  • Run cells with Shift+Enter.
  • Install missing packages with pip install <package>.
  • For a richer experience, try VSCode or JupyterLab.