What is the best practice to make this environment...
# ask-metaflow
c
What is the best practice to make this environment variable
CONDA_OVERRIDE_GLIBC=2.35
standard or default? Specifically I'm on a mac which builds environments for linux, one of our internal packages is built using manylinux_2_35 and this allows us to actually install it.
1
d
if you are using the metaflow extensions, you can set https://github.com/Netflix/metaflow-nflx-extensions/blob/main/metaflow_extensions/netflix_ext/config/mfextinit_netflixext.py#L132 in your profile as
METAFLOW_CONDA_SYS_DEFAULT_PACKAGES
c
Awesome thank you