Alhpa Delta
Alhpa Delta

Reputation: 3660

Installing utils (NOT python-utils) in a conda environment

How do I install utils (https://pypi.org/project/utils/) in a conda environment? Not python-utils (https://pypi.org/project/python-utils/) Usually I search for a module by

conda search utils

and then install it using

conda install utils

But looks like utils isnt there in conda.

There is something called python-utils though, it looks like a different package.

Upvotes: 2

Views: 12472

Answers (1)

phd
phd

Reputation: 94397

Install conda-related pip and use pip to install packages from PyPI to your conda environments:

conda install pip
pip install utils

Upvotes: 5

Related Questions