我使用的是Windows 8.1 64位和Python 2.7。尝试从shell
安装scikit-image
时
pip install scikit-image
我遇到了这个错误:
Command "python setup.py egg_info" failed with error code 1 in c:\users\france~1\appdata\local\temp\pip-buildtksnfe\scikit-image\
下载很好,但安装失败。 这里有什么问题以及如何解决?
修改
用
升级我的点子 python -m pip install -U pip setuptools
再试一次,我得到了:
Command "python setup.py egg_info" failed with error code 1 in c:\users\france~1\appdata\local\temp\pip-build-nbemct\scikit-image\
有什么问题?
答案 0 :(得分:15)
先安装numpy
pip install numpy
如果您遇到numpy的安装问题,请从http://www.lfd.uci.edu/~gohlke/pythonlibs/获取预先构建的Windows安装程序以获取您的python版本(python版本与Windows版本不同)。
numpy 32位:numpy-1.11.1 + mkl-cp27-cp27m-win32.whl
numpy 64位:numpy-1.11.1 + mkl-cp27-cp27m-win_amd64.whl
稍后您需要VC ++ 9.0,请从下面链接获取 Microsoft Visual C ++ 9.0是必需的。从http://aka.ms/vcpython27
获取然后安装
pip install scikit-image
在安装scikit-image
之前,它将安装在下面的列表中pyparsing,six,python-dateutil,pytz,cycler,matplotlib,scipy,decorator,networkx,pillow,toolz,dask
如果在安装scipy时失败,请按照以下步骤操作: 从http://www.lfd.uci.edu/~gohlke/pythonlibs/获取用于python版本的预构建的Windows安装程序(python版本与Windows版本不同)。
Scipy 32位:scipy-0.18.0-cp27-cp27m-win32.whl
Scipy 64位:scipy-0.18.0-cp27-cp27m-win_amd64.whl
如果未能说 whl不支持此平台,请使用 python -m pip install --upgrade pip 升级pip并尝试安装scipy
现在尝试
pip install scikit-image
它应该像魅力一样。