Speed up your Conda installs with Mamba
Conda installs can be very very very slow.
Every time you run conda install
:
- It has to collect the package metadata.
- It has to solve the environment.
… maybe you can take a coffee break here, or go work on a jigsaw puzzle to relax … - It has to download packages.
- Eventually, finally, it will install the packages it downloaded.
By the time this is all done you’ve probably forgotten what it was you were trying to do in the first place.
To be fair, Conda has gotten faster in the past few releases, but it’s still far from being fast.
Luckily, a new project called Mamba has set out to reimplement Conda functionality while running much faster.
So let’s see:
- How much faster Mamba is.