SciPy Windows 安装:f.whl 在此平台上不受支持
SciPy Windows install: f.whl is not a supported wheel on this platform
我在我的 Windows 64 位机器上安装了 Python 3.6(我已经在上面安装了 Python 2.7)我尝试 pip3 install seaborn
但是 scipy
是一个依赖项。我以为我已经安装了它,但显然我没有。
我从 here: scipy‑0.19.1‑cp36‑cp36m‑win_amd64.whl
下载了相应的 wheel 文件。但是当 运行 pip3 install
scipy‑0.19.1‑cp36‑cp36m‑win_amd64.whl` 时出现错误:
scipy‑0.19.1‑cp36‑cp36m‑win_amd64.whl is not a supported wheel on this platform
很多其他人都遇到过这个问题,但是 none 我读过的解决方案对我有帮助:
- 我确定我正在尝试安装正确的版本:Python 3.6 和 64 位。实际上我已经成功下载并安装了
seaborn
的 wheel 文件,但这还不够好,因为我还需要 scipy
.
- 我已经尝试用
pip3 install --upgrade pip
升级 pip
,但已经安装了最新版本。
除了安装 Anaconda 和必须重新设置我的 Python 3 环境之外,我还能做什么? (我什至不会肯定这会与 Anaconda 一起工作)
(whereis pip3) C:\Users\xxxxx\AppData\Local\Programs\Python\Python36-32\Scripts\pip3.exe
您重命名了您的文件夹(低概率),或者您的安装是 Python 3.6,其中 32 位版本!
您正在尝试安装 64 位版本 (scipy‑0.19.1‑cp36‑cp36m‑win_amd64.whl
),因此 is not a supported wheel on this platform
。
我在我的 Windows 64 位机器上安装了 Python 3.6(我已经在上面安装了 Python 2.7)我尝试 pip3 install seaborn
但是 scipy
是一个依赖项。我以为我已经安装了它,但显然我没有。
我从 here: scipy‑0.19.1‑cp36‑cp36m‑win_amd64.whl
下载了相应的 wheel 文件。但是当 运行 pip3 install
scipy‑0.19.1‑cp36‑cp36m‑win_amd64.whl` 时出现错误:
scipy‑0.19.1‑cp36‑cp36m‑win_amd64.whl is not a supported wheel on this platform
很多其他人都遇到过这个问题,但是 none 我读过的解决方案对我有帮助:
- 我确定我正在尝试安装正确的版本:Python 3.6 和 64 位。实际上我已经成功下载并安装了
seaborn
的 wheel 文件,但这还不够好,因为我还需要scipy
. - 我已经尝试用
pip3 install --upgrade pip
升级pip
,但已经安装了最新版本。
除了安装 Anaconda 和必须重新设置我的 Python 3 环境之外,我还能做什么? (我什至不会肯定这会与 Anaconda 一起工作)
(whereis pip3) C:\Users\xxxxx\AppData\Local\Programs\Python\Python36-32\Scripts\pip3.exe
您重命名了您的文件夹(低概率),或者您的安装是 Python 3.6,其中 32 位版本!
您正在尝试安装 64 位版本 (scipy‑0.19.1‑cp36‑cp36m‑win_amd64.whl
),因此 is not a supported wheel on this platform
。