Question about clearing cached environments in S3 ...
# ask-metaflow
f
Question about clearing cached environments in S3 - I want to force recreation of my conda environment since I added new packages to it . I removed my local environments however it looks like my flow is reusing the cached environment from s3 and I'm not able to import the newly installed packages in the flow. Any tips to clear s3 cached environments?
1
d
If you change the values in the decorator the environment should be recreated. Is that not happening? If you don’t change the requirements, there should be a file called
conda.manifest
which should be in
.metaflow/<flowname>
which you can trash to force things to re-resolve. If you are using the bleeding edge version of the decorators, there is a
--force
option as well.
f
Thanks! Changing the requirements in the decorator force the re-creation.
d
cool!