this post was submitted on 08 Aug 2024
20 points (91.7% liked)
Academia
771 readers
6 users here now
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Can anybody explain what conda provides over python + pip or python + poetry? I've never needed conda in all my years writing python for various purposes - except data science, but
pip install numpy
andpip install pandas
had me up and running in <1 minute for some test projects.Anti Commercial-AI license
Do you use venv? Conda gives you that capability (which is absolutely critical with the state of interconnected and complex package relationships) plus a package manager. I’m not sure what conveniences conda may provide over pip/virtualenvs but I imagine there is something that conda gives as an advantage for package publishers. I’d be curious about that myself having not pushed any packages to pypi or a conda repo.