Mahyar
Mahyar

Reputation: 67

Install utils package in python facing with error Package not found

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

Answers (5)

dinesh
dinesh

Reputation: 21

Install:

pip install utils

Import:

import utils

Upvotes: 2

WhaleShark
WhaleShark

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

monti
monti

Reputation: 804

to install run:

pip install python-utils 

to import:

import python_utils 

worked fine on jupyter notebook ubuntu 16.04

Upvotes: 1

jz0410
jz0410

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

Vlad D
Vlad D

Reputation: 454

Try run:
conda install --channel bioconda/label/bioconda-utils-test package
or
conda install -c conda-forge python-utils

Upvotes: 0

Related Questions