Good Morning, I've recently deployed the argo wor...
# ask-metaflow
c
Good Morning, I've recently deployed the argo workflows terraform system. Tried to run the first flow and get a lot of these errors
Copy code
Error downloading package from cache for '_libgcc_mutex-0.1-conda_forge':
...
Error: Could not fetch packages -- see pretty-printed errors above.
The environment is
Copy code
@conda_base(libraries={}, python="3.11")
I guessing some permission didn't get setup correctly which might be related to my question above. Thanks for any help hope the talk tour is going well 🙂
👀 1
@square-wire-39606 I also had some issues deploying the terraform system. See https://outerbounds-community.slack.com/archives/C02116BBNTU/p1713294687774469 It's entirely possible I'm having issues due to my complete ignorance of terraform. Thank you for any help, I know you guys are busy 🙂
a
@hundreds-zebra-57629 may be in a better spot to help out here 🙂
🙏 1
c
@hundreds-zebra-57629 @square-wire-39606 I got it working!! But I think I found a potential bug. So originally I used this environment
Copy code
@conda_base(libraries={}, python="3.11")
and got the error
Copy code
Error downloading package from cache for '_libgcc_mutex-0.1-conda_forge':
...
Error: Could not fetch packages -- see pretty-printed errors above.
I noticed in the S3 bucket that no conda_env has been cached. Even though the original output seemed to indicate that an environment had been cached. (not sure lost those logs) So I modified the env adding pandas
Copy code
@conda_base(libraries={"pandas": ""}, python="3.11")
and it ran correctly. I should mention I'm using the netflix-extension package manager.
a
interesting. paging @dry-beach-38304 too
d
Just to confirm, you are saying that specifying a conda_base environment with no libs and just the python version causes an error? I can try to repro (out this week but can check this weekend/next week but confirming what the issue is).
c
yes thats correct.
d
Ok. Does it still do that? There should be no difference between the two (ie: some packages are alwasys added). I’ll try to repro but wonder if it was a problem a while ago with uploading stuff.
c
I'm working through another issue with @hundreds-zebra-57629 on the terraform deployment. Perhaps this is tied to that.