我尝试安装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.
不确定为什么会这样。我在这里做错了什么?
答案 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
版本。