All about Conda

Published:
Published:

Table of contents

I decided to create this page because I often

Common tasks

There is probably an environment where I already have PyTorch installed but how to find the environment with one specific package installed? Of course this is about some big packages like TensorFlow or PyTorch or something with native dependencies where it's more of a hassle to create a new one.

So list configured environments with

conda info --envs

and then search for the package

conda list -n diffusers torch # last positional argument is a regex
# so instead you can apply your bash-fu
conda list -n diffusers | grep torch

Examples

My environments I created in the following projects

Rate this page