Hello,

I want to install the following version of pygame in my windows10.pro:install pygame-1.9.2a0-cp33-none-win_amd64.whl, but the file is in .whl format which I dont have any program to open it
I checked the information in https://docs.python.org/3/installing/ to understand how to use pip. But didn't make it...

My result is the following, using python3.5.0 IDLE:
>>> pip install pygame-1.9.2a0-cp34-none-win32.whl
SyntaxError: invalid syntax
>>> pip pygame-1.9.2a0-cp34-none-win32.whl
SyntaxError: invalid syntax
>>> python -m pip install pygame-1.9.2a0-cp33-none-win_amd64.whl
SyntaxError: invalid syntax
>>> python3.5.0 -m pip install pygame-1.9.2a0-cp33-none-win_amd64.whl
SyntaxError: invalid syntax
>>> 

Can you help me solve my problem?