A quick and easy way to start learning about Prefect
- Make sure you have python 3.9 installed. Ideally, set up a python virtual environment before starting. See the Useful commands section for how to create and activate a virtual environment.
- Once you have you virtual environment activated, run the following command to install dependencies required for this tutorial
pip install -r requirement.txt
- Now that your setup is completed, simply go to the tutorial page to get started.
command | description |
---|---|
python3 -m venv <venv-project-folder> |
Create a virtual environment |
source <venv-project-folder>/bin/activate |
Activate the virtual environment |
pip install -r requirements.txt |
Install dependencies |
deactivate |
Deactivate the virtual environment |