this post was submitted on 08 Aug 2024
20 points (91.7% liked)

Academia

746 readers
1 users here now

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] onlinepersona@programming.dev 0 points 1 month ago (1 children)

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 and pip install pandas had me up and running in <1 minute for some test projects.

Anti Commercial-AI license

[–] ikilledlaurapalmer@mander.xyz 2 points 4 weeks ago

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.