Jul-14-2024, 10:55 AM
Essentially, my question is regarding my misunderstanding of the differences between venv, conda and virtualenv.
I have always used venv for python environments and 'pip install' for any requirements.
A few weeks ago I switched from opensuse leap to tumbleweed (a complete OS reinstall) and getting the pip requirements to install was a nightmare... error after error after error. Eventually, I got them installed and everything is OK. I can't remember what I finally did to get them install.
Today I decided to fire up my code on my Fedora laptop and I'm having the same problems getting my pip requirements to install.
So I'm looking into conda...
Is it possible to create a conda environment for a chosen version of python such that I can upload the whole thing to git and upon git cloning on a different machine for my code to work? I guess I'm asking 'does it bundle up Python and all the requirements that I can take to any machine?
Thank you!
I have always used venv for python environments and 'pip install' for any requirements.
A few weeks ago I switched from opensuse leap to tumbleweed (a complete OS reinstall) and getting the pip requirements to install was a nightmare... error after error after error. Eventually, I got them installed and everything is OK. I can't remember what I finally did to get them install.
Today I decided to fire up my code on my Fedora laptop and I'm having the same problems getting my pip requirements to install.
So I'm looking into conda...
Is it possible to create a conda environment for a chosen version of python such that I can upload the whole thing to git and upon git cloning on a different machine for my code to work? I guess I'm asking 'does it bundle up Python and all the requirements that I can take to any machine?
Thank you!