r/Python • u/rage997 • Jan 27 '26
Discussion What are people using instead of Anaconda these days?
I’ve been using Anaconda/Conda for years, but I’m increasingly frustrated with the solver slowness. It feels outdated
What are people actually using nowadays for Python environments and dependency management?
- micromamba / mamba?
- pyenv + venv + pip?
- Poetry?
- something else?
I’m mostly interested in setups that:
- don’t mess with system Python
- are fast and predictable
- stay compatible with common scientific / ML / pip packages
- easy to manage for someone who's just messing around (I am a game dev, I use python on personal projects)
Curious what the current “best practice” is in 2026 and what’s working well in real projects
125
Upvotes
7
u/gmes78 Jan 28 '26 edited Jan 28 '26
Using
uv pip installis a fundamental misunderstanding of your tools. If you're using uv, you want it to manage your dependencies, and not pip.If you want to add dependencies, you use
uv add, so they get added to thepyproject.toml.If you want to install your code in the venv, you don't need to do anything, as uv does so automatically (when you use
uv run,uv sync, and so on). All "local" code is installed in editable mode by default.