python - Trouble installing pygame using pip install -


i tried: c:/python34/scripts/pip install http://bitbucket.org/pygame/pygame

and got error:

cannot unpack file c:\users\marius\appdata\local\temp\pip-b60d5tho-unpack\pygame  (downloaded c:\users\marius\appdata\local\temp\pip-rqmpq4tz-build, conte nt-type: text/html; charset=utf-8); cannot detect archive format   cannot determine archive format of c:\users\marius\appdata\local\temp\pip-rqmp q4tz-build 

please if have solutions please feel free share them! tried pip install --allow-unverified, gave me error well.

this method works me.

pip install pygame==1.9.1release --allow-external pygame --allow-unverified pygame 

--

these steps lead me command (i put them people finds easily):

$ pip install pygame collecting pygame   not find downloads satisfy requirement pygame   externally hosted files ignored access them may unreliable (use --allow-external pygame allow).   no distributions @ found pygame 

then, suggestes allow external:

$ pip install pygame --allow-external pygame collecting pygame   not find downloads satisfy requirement pygame   insecure , unverifiable files ignored (use --allow-unverified pygame allow).   no distributions @ found pygame 

so allow unverifiable:

$ pip install pygame --allow-external pygame --allow-unverified pygame collecting pygame   pygame potentially insecure , unverifiable.   http error 400 while getting http://www.pygame.org/../../ftp/pygame-1.6.2.tar.bz2 (from http://www.pygame.org/download.shtml)   not install requirement pygame because of error 400 client error: bad request   not install requirement pygame because of http error 400 client error: bad request url http://www.pygame.org/../../ftp/pygame-1.6.2.tar.bz2 (from http://www.pygame.org/download.shtml) 

so, after visit http://www.pygame.org/download.shtml, thought adding version number (1.9.1release stable one).

--

hope helps.


Popular posts from this blog