Search code examples
pythonpython-2.7curses

Install .whl error


I want to use curses module in windows.So I found

python celery - ImportError: No module named _curses - while attempting to run manage.py celeryev

And when I want to install, I am getting an error.

I am running

pip install curses-2.2-cp34-none-win32.whl
pip install curses-2.2-cp34-none-win_amd64.whl
pip install --use-wheel curses-2.2-cp34-none-win32.whl
pip install --use-wheel curses-2.2-cp34-none-win_amd64.whl

All it does is display this error:

curses-2.2-cp34-none-*.whl is not a supported wheel on this platform.

Why? How can I solve it?


Solution

  • You probably want the cp27 wheel (cp34 is for CPython 3.4)