Quick Start: Run Notebooks Locally
Clone the repo:
git clone https://github.com/dataloop-ai/dtlpy-documentation.git cd dtlpy-documentation(Recommended) Create a virtual environment:
python -m venv venv # Activate: # On Windows: venv\Scripts\activate # On Mac/Linux: source venv/bin/activateInstall requirements:
pip install -r requirements.txt pip install notebook # if not already installedStart Jupyter:
jupyter notebook- Open your browser to the Jupyter page if it doesn't open automatically.
- Navigate to the
notebooks/folder and open any.ipynbfile.
Tips & Troubleshooting
- Run cells with
Shift+Enter. - Install missing packages with
pip install <package>. - For a richer experience, try VSCode or JupyterLab.