Is it possible to move conda enviornments from windows to linux ?

I created a .yml file on windows using
[FONT=courier new][COLOR=rgb(226, 80, 65)]conda env export --name ENVNAME > envname.yml[/FONT]

And when restored that in linux using
[COLOR=rgb(235, 107, 86)][FONT=courier new]conda env create -f envname.yml[/FONT]

It throws tons of errors like Warning: you have pip-installed dependencies in your environment file, but you d - Pastebin.com
On their website its mentioned yml file means “Export an environment to a YAML file that can be read on Windows, macOS, and Linux”. This is unfair I moved from faster venv to conda because it was supposed to do this :confounded:.

I think you can try normal python way with pip --freeze then install those in linux may be…

No because few libraries fail with pip install, but works with conda install

then cant you write a script to convert it all to conda install

1 Like

Yes did that ;-; ,converted to normal pip install without anaconda.

1 Like

Did you make a script for that, if yes, it will be better if you do post it here

making one w8