Hello, I have this error on cloud prefect, using ...
# prefect-community
m
Hello, I have this error on cloud prefect, using a kubernetes agent.
Failed to load and execute flow run: ImportError('Unable to import Github, please ensure you have installed the github extra')
KubernetesRun()
with
image="<http://ghcr.io/xxx/custom-prefect:1.0.0|ghcr.io/xxx/custom-prefect:1.0.0>"
Dockerfile of this image looks like:
FROM prefecthq/prefect:core
RUN pip install prefect[postgres] prefect[github] requests
& tried to add env var
"EXTRA_PIP_PACKAGES": "prefect[github]"
to
KubernetesRun()
k
Can you try with
prefecthq/prefect:latest
instead? I think that core might have a different entrypoint
🙌 1
1
m
I try and let you know 👍
Working ! Thanks a lot 😉
👍 1