Install uv in a conda environment

· Zach Ocean

If you’re working in a project which relies on conda installs for system dependencies but you also want to use uv instead of pip for much faster python-only dependencies:

You can create a new conda env the usual way (conda create -n whatever), then pip install uv.

Now you can install python deps with uv pip install ....

Thanks to Brandon Young for this tip.