https://flyte.org logo
#ask-the-community
Title
# ask-the-community
d

Durgai Vel

10/04/2023, 1:05 PM
Hii all, I am trying to execute a task using flyte,I've previously registered the task to the flyteadmin, I didn't use flyte's default image, I've used my pre-build image, but when I tried executing the task, it keeps throwing the error saying,
Copy code
standard_init_linux.go:228: exec user process caused: no such file or directory
when the container is starting, The image is getting pulled and it was able to locate the
pyflyte-fast-execute
executable, after that it keeps throwing the above error, is it due to any missing dependencies, I've installed only the
flytekit
pip package inside my container regarding flyte, does it requires anything else to be installed? Thanks in advance :)
k

Ketan (kumare3)

10/04/2023, 3:11 PM
Seems like the pythonpath is incorrect
d

Durgai Vel

10/04/2023, 3:52 PM
which means, where should it supposed to point to? @Ketan (kumare3)
s

Samhita Alla

10/05/2023, 7:05 AM
Could you share your Dockerfile? Here's one that we're using: https://github.com/flyteorg/flytesnacks/blob/master/examples/basics/Dockerfile
d

Durgai Vel

10/05/2023, 7:28 AM
Yea, thanks @Samhita Alla, it was due to the $PATH variable, which was not pointed to the right python interpreter, now it was resolved.