Reputation: 3660
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
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