Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 831 Bytes

README.md

File metadata and controls

35 lines (27 loc) · 831 Bytes

Running your first flow with Prefect, Jupyter-style!

Prerequisites

Python 3.7 or greater

Getting Started

We will demo some of the features of Prefect through Jupyter. To begin,

  1. Clone the repo with SSH:
git clone git@github.com:serinamarie/prefect-in-jupyter-notebook.git

Alternatively, clone the repo with HTTPS:

git clone https://github.com/serinamarie/prefect-in-jupyter-notebook.git
  1. cd into the working directory
cd prefect-in-jupyter-notebook
  1. Install Jupyter Notebook.
pip install notebook
  1. Once installed, start up the notebook server:
jupyter notebook
  1. Look at prefect_ml.py and titanic.csv. We will be using these in the demo.

  2. Do not skip step 5. When you're ready, click getting-started-with-prefect.ipynb!