For some reasons, I want to use the python package awswrangler inside a Python 3 Glue Job. There are two main ways I've considered for installing awswrangler:
Specify additional libraries to a glue job. By considering
.whlfile and then passing it to the Glue Job through the--extra-py-filesInstalling inside the python script with
subprocessoros. For example, the code example withosis the following
import os
os.system('python -m pip install --user awswrangler==0.0.b0')
Notice in the last case, that I've gone down to even use the first pre-release version of awswrangler. Full list of versions can be found here. However, even with the first prelease I'm unable to use awswrangler on a Glue script. Is there a way to achieve this?