following up on the above, all the integration pac...
# ask-community
n
following up on the above, all the integration packages now have 3.x releases as well (which would be the default after
pip 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
Copy code
pip install 'prefect[aws]<3'
for prefect 3.x
Copy code
pip install -U 'prefect[aws]'
🙌 1
🎉 1
j
Hey Nate, maybe you should pin this post for a while...
n
hey @Janet Carson - that is not a bad idea. will do that now thank you!