https://prefect.io logo
Title
l

Luke Orland

08/12/2020, 4:31 PM
pip install prefect[aws,dask_cloudprovider]
currently fails to install (without some extra work) due to conflicting dependencies. A solution I found was:
pip install --use-feature=2020-resolver prefect[aws,dask_cloudprovider]
If you pin versions in requirements.txt or use pipenv or pip-tools, you can then run
$ pip freeze | grep boto
aiobotocore==1.0.7
boto3==1.12.32
botocore==1.15.32
to see the versions you need to pin to.
:upvote: 1
c

Chris White

08/12/2020, 4:32 PM
Thanks @Luke Orland! I’ll archive this message to GitHub as well for others to see
@Marvin archive “How to resolve dependency conflicts between aws and dask_cloudprovider extras”