Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anaconda Python install imutils in Windows10

I am using Anaconda2 Python2.7 with Windows 10 . How can I install the package imutils?

When I type: conda install imutils

It returns

Error:  Package missing in current win-64 channels:
  - imutils

And then I search it

anaconda search -t conda imutils

enter image description here

It seems that there is only the OSX version, but not the windows version.

Are there any methods that can install imutils in Anaconda Windows 10?

like image 417
VICTOR Avatar asked May 23 '16 03:05

VICTOR


2 Answers

Did you try running these commands:

import pip  
pip.main(['install', 'package-name'])
like image 162
Sumit Chopra Avatar answered Sep 18 '22 00:09

Sumit Chopra


You can install pip on the anaconda platform.

  1. Use

    conda install pip
    
  2. Then use pip to install imutils:

    pip install imutils
    

The package will get installed.

like image 35
Vaibhav K Avatar answered Sep 20 '22 00:09

Vaibhav K