Anaconda Python 在 Windows10 中安装 imutils
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/37382296/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Anaconda Python install imutils in Windows10
提问by VICTOR
I am using Anaconda2 Python2.7with Windows 10. How can I install the package imutils?
我使用Anaconda2 Python2.7用的Windows 10。如何安装imutils包?
When I type: conda install imutils
当我输入: 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.
好像只有OSX版本,没有windows版本。
Are there any methods that can install imutils in Anaconda Windows 10?
是否有任何方法可以在 Anaconda Windows 10 中安装 imutils?
回答by Vaibhav K
You can install pip
on the anaconda platform.
可以安装pip
在anaconda平台上。
Use
conda install pip
Then use
pip
to installimutils
:pip install imutils
用
conda install pip
然后使用
pip
安装imutils
:pip install imutils
The package will get installed.
该软件包将被安装。
回答by Sumit Chopra
Did you try running these commands:
您是否尝试运行以下命令:
import pip
pip.main(['install', 'package-name'])
回答by Umair Mughal
Imutils in anaconda for Windows 10 64-bit:
适用于 Windows 10 64 位的 anaconda 中的 Imutils:
conda install -c pjamesjoyce imutils
回答by bruce
imutls is not supported in anaconda Win64
anaconda Win64 不支持 imutls
pip install imutils
pip 安装 imutils
https://anaconda.org/mlgill/imutils
https://anaconda.org/mlgill/imutils
回答by FooBar167
I am using Anaconda3 Python3.6 with Windows 7, but the command seems the same: pip install imutils
我在 Windows 7 上使用 Anaconda3 Python3.6,但命令似乎相同: pip install imutils
c:\>pip install imutils
Collecting imutils
Downloading imutils-0.4.0.tar.gz
Building wheels for collected packages: imutils
Running setup.py bdist_wheel for imutils ... done
Stored in directory: C:\Users\username\AppData\Local\pip\Cache\wheels\
d9e60e31cc4bec207af96ac3cda32b2ce6475a8883ec0d6b99
Successfully built imutils
Installing collected packages: imutils
Successfully installed imutils-0.4.0
c:\>anaconda search -t conda imutils
Using Anaconda API: https://api.anaconda.org
Run 'anaconda show <USER/PACKAGE>' to get more details:
Packages:
Name | Version | Package Types | Platforms
------------------------- | ------ | --------------- | ---------------
STScI/imutils | 0.0.0.git | conda | osx-64
: imutils
mlgill/imutils | 0.3.6 | conda | linux-64, osx-64
thecampfire/imutils | 0.3.1 | conda | osx-64
For those who's using Python 2.7, write the same command with path to pip2.7.exe file c:\Python27\Scripts\pip2.7.exe install imutils
对于那些使用 Python 2.7 的人,使用 pip2.7.exe 文件的路径编写相同的命令 c:\Python27\Scripts\pip2.7.exe install imutils
c:\>c:\Python27\Scripts\pip2.7.exe install imutils
Collecting imutils
Using cached imutils-0.4.0.tar.gz
Installing collected packages: imutils
Running setup.py install for imutils ... done
Successfully installed imutils-0.4.0
c:\>c:\Python27\Scripts\pip2.7.exe show imutils
Name: imutils
Version: 0.4.0
Summary: A series of convenience functions to make basic image processing
functions such as translation, rotation, resizing, skeletonization, displaying
Matplotlib images, sorting contours, detecting edges, and much more easier
with OpenCV and both Python 2.7 and Python 3.
Home-page: https://github.com/jrosebr1/imutils
Author: Adrian Rosebrock
Author-email: [email protected]
License: UNKNOWN
Location: c:\python27\lib\site-packages
Requires:
回答by m0z4rt
compatible with python 3.5.x
与 python 3.5.x 兼容
conda install -c mlgill imutils