Marcel Cozma
Marcel Cozma

Reputation: 4489

install curses .whl package on windows

I want to install curses .whl package so I can use it with pick (https://github.com/wong2/pick) on windows.

PS C:\D\Programming\Python> python --version
Python 3.5.2 :: Continuum Analytics, Inc.

PS C:\D\Programming\Python> pip.exe install .\curses-2.2-cp35-none-win32.whl
curses-2.2-cp35-none-win32.whl is not a supported wheel on this platform.

Any ideea why ?

Upvotes: 4

Views: 3589

Answers (1)

Marcel Cozma
Marcel Cozma

Reputation: 4489

It worked with curses-2.2-cp35-none-win_amd64.whl (http://www.lfd.uci.edu/~gohlke/pythonlibs/#curses)

Upvotes: 3

Related Questions