AWS Glue python install - Could not find a version
Asked Answered
U

2

6

I am trying to use the AWSGlue module in Python, but cannot install the module in the terminal.

sh-4.2$ pip install awsglue
Collecting awsglue
Could not find a version that satisfies the requirement awsglue (from versions: )
No matching distribution found for awsglue

Is there a way around this or is there a way I can download this from a third-party?

Does anyone have this AWSGlue module working?

Any help would be appreciated.

Unutterable answered 28/3, 2019 at 15:28 Comment(0)
C
5

I believe the awsglue package is only available in the images provided by AWS. So you'll need to download their image and run it, then awsglue is available in the global namespace.

Annoying, yes I know.

Concepcionconcept answered 7/4, 2021 at 22:45 Comment(0)
V
2

Actually, there's a way to get the repository of the libs into your Python project using pip, based on this answer: https://github.com/awslabs/aws-glue-libs/issues/3#issuecomment-1145339126

pip3 install git+https://github.com/awslabs/aws-glue-libs.git

This will at least give you autocomplete.

Vaginismus answered 21/8 at 9:12 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.