Nate
09/03/2024, 8:22 PMpip install prefect-{something}
the easiest way to get a compatible version (regardless of whether you're on 2.x or 3.x) is to install the extra for the given package, for example
to install prefect-aws
for prefect 2.x
pip install 'prefect[aws]<3'
for prefect 3.x
pip install -U 'prefect[aws]'
Janet Carson
09/09/2024, 9:50 PMNate
09/09/2024, 10:02 PM