我尝试安装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.


不知道为什么会这样。我在这里做错了什么?

最佳答案

dist/wafo-0.3.1.post0.dev41+gea2edc1-cp27-cp27mu-linux_x86_64.whl中,cp27表示CPython版本2.7。看来您使用的是Python3.x。您需要使用Python 2.7 virtualenv或找到该.whl的cp3x版本。

关于python - 安装pywafo,获取“此平台不支持<name>的轮子”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42790835/

10-12 22:05