我想安装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在这个平台上不是一个有支撑的轮子

有什么问题吗?


当前回答

对于我的情况,在我的Python安装(Python 3.6.9)中安装了dlib,我发现将WHL文件名从dlib-19.8.1-cp36-cp36m-win_amd64。WHL到dlib-19.8.1-cp36-none-any。WHL对我有用。

下面是我运行pip install来安装dlib的方法:

pip3 install dlib-19.8.1-cp36-none-any.whl

但是,我仍然想知道是否有任何替代方案,可以在不更改名称的情况下通过pip命令安装WHL文件。

其他回答

我在Windows 7 64位上安装Python 2.7的64位版本时遇到了类似的问题。一切都是最新的,但我得到的信息是:

scipy-0.18.1-cp27-cp27m-win_amd64。本平台不支持WHL轮

然后我下载了一个32位的。whl文件,它工作了。

pip install scipy-0.18.1-cp27-cp27m-win32.whl

我怀疑问题可能是我没有使用AMD处理器,而是英特尔处理器,而SciPy 64位版本在最后显示amd64。

cp33表示CPython 3.3。

你需要scipy - 0.15.1 - cp27 - none - win_amd64。whl代替。

最好检查一下要安装包的Python版本。

如果轮子是为Python 3构建的,而你的Python版本是Python 2。你可能会得到这个错误。

在使用pip安装时,请遵循以下约定:

python2 -m pip install XXXXXX.whl # If the .whl file is for Python 2
python3 -m pip install XXXXXX.whl # If the .whl file is for Python 3

我也有同样的问题

我从https://pypi.org/project/pip/#files下载了最新的pip

然后……

pip install << downloaded file location >>

然后Pygame和Kivy安装成功了…

需要检查的事项:

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