My project supposed to run on cross platform environment (Mac, Win, Linux). I've created a conda env that manage our dependencies for an easy setup. I want to ensure that everyone that want to update the enn could do that, however when I try to export the env from linux to yml file, it couldnt be install properly on Win or Mac and vise versa.
I've already tried to do the regular stuff:
1.
conda env export > env.yml
conda env create --name -f env.yml
2. conda env export --no-builds > env.yml
5. https://github.com/ESSS/conda-devenv/blob/master/README.rst
non of the above give me the right answer... some of the tutorials I've attached might help, but I didn't succeed to implement them correctly, and they didn't contain some important information for finishing the tutorial properly.
for instance: Regarding 3/4 - It didn't explain how to create the yml file that should construct the env.
I understood that conda supposed to work on cross platform env... It would be great if someone could help me with that.