Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make "conda" download packages in parallel

conda install -y <package_name> will install the package and its dependencies. This is done in one-by-one fashion.

Can it be done in parallel ? Just only the downloading part ?

enter image description here

like image 356
Phizaz Avatar asked Aug 17 '17 12:08

Phizaz


1 Answers

In 2021 the correct answer is to use mamba. It's a very fast reimplementation of conda in C++ supporting parallel downloading/extracting.

like image 178
Luke Davis Avatar answered Jan 04 '23 08:01

Luke Davis