我想安装ImageHash,我做到了:
pip install pillow==2.6.1 imagehash==0.3但我得到了:
ImportError: No module named numpy.distutils.core
----------------------------------------
Cleaning up...
Command /usr/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip_build_root/scipy/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-ZDGKpH-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_root/scipy
Traceback (most recent call last):
File "/usr/bin/pip", line 9, in <module>
load_entry_point('pip==1.5.4', 'console_scripts', 'pip')()
File "/usr/lib/python2.7/dist-packages/pip/__init__.py", line 235, in main
return command.main(cmd_args)
File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 161, in main
text = '\n'.join(complete_log)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 72: ordinal not in range(128)我应该如何安装?
发布于 2016-07-24 07:20:50
要求是枕头,麻木和scipy。因此,我们应该遵循以下原则:
对于numpy/scipy:
sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev gfortran
sudo pip install scipy然后:
sudo pip install Pillow
sudo pip install imagehash发布于 2017-09-07 04:11:37
如果您已经使用conda安装了python,请尝试执行以下操作:
conda install -c scitools imagehash发布于 2017-05-27 09:33:15
如果同时运行Python2.7和Python3,则运行:sudo python3 -m pip install imagehash
https://stackoverflow.com/questions/38547249
复制相似问题