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
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?
Did you try running these commands:
import pip
pip.main(['install', 'package-name'])
You can install pip
on the anaconda platform.
Use
conda install pip
Then use pip
to install imutils
:
pip install imutils
The package will get installed.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With