Hi I’m working with prefect 2.0, trying to replace...
# prefect-community
l
Hi I’m working with prefect 2.0, trying to replace the storage capability with the new filesystem feature. I managed to publish the deployment but when the agent is launching a Job I got an issue with the lack of
gcsfs
dependency (using GCS as a
RemoteFileSystem
) I guess this dependency should be added to the docker image or maybe it’s possible to specify additional libs ?
1
1
a
to be fully transparent, this interface will slightly change with tomorrow's GA release - I'd recommend to wait until then to avoid extra rework on your end
1
gcsfs and s3fs dependencies will be added to the core package to make it easier but yes, now you would need to install it:
Copy code
pip install gcsfs
🙌 2
l
hmm ok great news that these libs will be added 👍 However can’t install gcsfs on the flow run pod as the job specification is made within the agent code (i did install gcfs on the agent to be able to publish the deployment)
a
yeah let's catch up later this week
👍 1