-1

I tried to install pygame 3.4 from www.lfd.uci.edu I read someone that told me to do this C:\Python34\Scripts\pip3.4.exe install C:\Users\tomer2\Desktop\pygame+mkl‑cp34‑none‑win_amd64.whl

but it does not work.

Cœur
  • 34,719
  • 24
  • 185
  • 251
ronald7894
  • 67
  • 1
  • 5
  • What do you mean by "it does not work"? – Selcuk Apr 01 '15 at 21:14
  • You can't install `pygame` by passing the name of the `numpy` .whl file. Think about what you are doing next time you blindly run a command found on the internet. – MattDMo Apr 01 '15 at 21:38

1 Answers1

1

The code you tried seems suspiciously similar to the answer I gave here. That command is not a magical string that does everything: it won't install pygame for you when you give it the name of a numpy .whl file. For this to work, you have to download the proper file, then use a command that includes the proper filename.

Community
  • 1
  • 1
TigerhawkT3
  • 46,954
  • 6
  • 53
  • 87