Reputation: 67
I tried to install utils Python
package using Anaconda
but I ended up with this error:
Package missing in current win-64 channels
I tried:
conda install -c bioconda utils
, but still the same. Can anyone help me fix it?
Upvotes: 0
Views: 29001
Reputation: 89
Once you have installed python-utils with:
conda install --name myenv python-utils
You can then reference the package by using:
from python_utils import *
Upvotes: -1
Reputation: 804
to install run:
pip install python-utils
to import:
import python_utils
worked fine on jupyter notebook ubuntu 16.04
Upvotes: 1
Reputation: 151
I succeed using following instructions:
The package can be installed through pip (this is the recommended method):
pip install python-utils
Or if pip is not available, easy_install should work as well:
easy_install python-utils
for more details please refer to https://pypi.org/project/python-utils/
however, I failed using Влад Давидченко's answers.
Upvotes: 0
Reputation: 454
Try run:
conda install --channel bioconda/label/bioconda-utils-test package
or
conda install -c conda-forge python-utils
Upvotes: 0