我想安装scipy-0.15.1-cp33-none-win_amd64。我已经保存到本地驱动器。我正在使用:

pip 6.0.8 from C:\Python27\Lib\site-packages
python 2.7.9 (default, Dec 10 2014, 12:28:03) [MSC v.1500 64 bit (AMD64)]

当我跑步时:

pip install scipy-0.15.1-cp33-none-win_amd64.whl

我得到以下错误:

scipy-0.15.1-cp33-none-win_amd64。WHL在这个平台上不是一个有支撑的轮子

有什么问题吗?


当前回答

我试图安装scikit-image,但当我试图安装.whl文件时,我得到了以下错误,即使我安装的Python版本是2.7 32位:

scikit_image-0.12.3-cp27-cp27m-win32。WHL在这个平台上不是一个有支撑的轮子。

然而,在错误消息之前,我也得到了这条消息:

您使用的是pip版本7.1.0,但是版本8.1.2是可用的。 您应该考虑通过'python -m pip install——upgrade pip'命令进行升级。

然后我运行命令python -m pip install——upgrade pip,然后pip install scikit_image-0.12.3-cp27-cp27m-win32。WHL工作正常。

其他回答

需要检查的事项:

You are downloading proper version like cp27 (means for Python 2.7) cp36 (means for Python 3.6). Check of which architecture (32 bit or 64 bit) your Python is (you can do it so by opening Python IDLE and typing). import platform platform.architecture() Now download the file of that bit, irrespective of your system architecture. Check whether you're using the correct filename (i.e., it should not be appended with (1) which might happen if you download the file twice) Check if your pip is updated or not. If not, you can use: python -m pip install -upgrade pip

我试图安装scikit-image,但当我试图安装.whl文件时,我得到了以下错误,即使我安装的Python版本是2.7 32位:

scikit_image-0.12.3-cp27-cp27m-win32。WHL在这个平台上不是一个有支撑的轮子。

然而,在错误消息之前,我也得到了这条消息:

您使用的是pip版本7.1.0,但是版本8.1.2是可用的。 您应该考虑通过'python -m pip install——upgrade pip'命令进行升级。

然后我运行命令python -m pip install——upgrade pip,然后pip install scikit_image-0.12.3-cp27-cp27m-win32。WHL工作正常。

对我来说,当我选择了我的Python版本的正确位,而不是我的计算机版本的位时,它就工作了。

我的是32位的,我的电脑是64位的。这就是问题所在,32位版本修复了它。

确切地说,下面是我下载并为我工作的一个:

mysqlclient-1.3.13-cp37-cp37m-win32.whl

再次强调,只要确保选择你的Python版本的比特,而不是你的系统版本。

在我的例子中,这与之前没有安装GDAL核心有关。关于如何安装GDAL和Basemap库的指南,请访问GISPython

在我的情况下(Windows 64位,Python 2.7和Cygwin),问题是缺少gcc。

使用apt-cyg安装gcc-core使我可以使用pip2 wheel…自动安装车轮。