安装pywafo获取“<name>不是这个平台上支持的轮子”

时间:2017-03-14 16:00:05

标签: python pip

我尝试安装pywafo

apt-get install gfortran
git clone https://github.com/wafo-project/pywafo.git
cd pywafo/
python3 setup.py bdist_wheel -d dist
pip3 install dist/wafo-0.3.1.post0.dev41+gea2edc1-cp27-cp27mu-linux_x86_64.whl 

但我得到了:

$ pip3 install dist/wafo-0.3.1.post0.dev41+gea2edc1-cp27-cp27mu-linux_x86_64.whl 
wafo-0.3.1.post0.dev41+gea2edc1-cp27-cp27mu-linux_x86_64.whl is not
a supported wheel on this platform.

不确定为什么会这样。我在这里做错了什么?

1 个答案:

答案 0 :(得分:1)

dist/wafo-0.3.1.post0.dev41+gea2edc1-cp27-cp27mu-linux_x86_64.whl cp27表示CPython版本2.7。看起来你正在使用Python 3.x.您需要使用Python 2.7 virtualenv或找到.whl的cp3x版本。