I could not install pygame no matter what

2023-01-21 Thread Robbie mezazem
70916814/error-metadata-generation-failed-cant-install-artic-module Sent from Mail for Windows -- https://mail.python.org/mailman/listinfo/pyth

Re: Python 3.11 with Pygame

2022-10-25 Thread Mats Wichmann
On 10/25/22 11:47, Joni Ekholm wrote: Hi, Does Pygame work with 3.11? with 3.10 no problems. Br Joni It often takes a while for projects with binary wheels to to catch up to new Python releases. You can always go check: https://pypi.org/project/pygame/#files From that, it seems there

Python 3.11 with Pygame

2022-10-25 Thread Joni Ekholm
Hi, Does Pygame work with 3.11? with 3.10 no problems. Br Joni -- https://mail.python.org/mailman/listinfo/python-list

Re: library not initialized (pygame)

2022-02-19 Thread Martin Di Paola
Could you share the traceback / error that you are seeing? On Sun, May 02, 2021 at 03:23:21PM -0400, Quentin Bock wrote: Code: #imports and variables for game import pygame from pygame import mixer running = True #initializes pygame pygame.init() #creates the pygame window screen

Re: library not initialized (pygame)

2022-02-19 Thread Cosmo Hope
t error on my Fedora 32 machine. The script ultimately > doesn't run because it can't find the icon png file. But the window > briefly appears and it seems like pygame is being initialized properly. i have the same problem currently have you found a solution by chance. -- https://

Re: Problem upgrading pip and installing pygame

2022-01-31 Thread Mats Wichmann
On 1/31/22 07:18, ojomooluwatolami...@gmail.com wrote: > > Good morning, Python. I am having trouble installing pygame. it keeps saying > to upgrade my pip version which I have done several times. then when I tried > importing python to see if it has worked, in the ide it says the

Re: Problem upgrading pip and installing pygame

2022-01-31 Thread Dennis Lee Bieber
On Mon, 31 Jan 2022 14:18:47 +, ojomooluwatolami...@gmail.com declaimed the following: > >Good morning, Python. I am having trouble installing pygame. it keeps saying >to upgrade my pip version which I have done several times. then when I tried >importing python to see if it ha

Problem upgrading pip and installing pygame

2022-01-31 Thread ojomooluwatolami675
Good morning, Python. I am having trouble installing pygame. it keeps saying to upgrade my pip version which I have done several times. then when I tried importing python to see if it has worked, in the ide it says the module does not exist or something along that line. what do I do please

Re: 'Pygame Module' not working

2021-07-31 Thread MRAB
On 2021-07-31 20:46, Dennis Lee Bieber wrote: On Sat, 31 Jul 2021 14:07:05 +0530, 37_VA_VEER CHAKRABORTY declaimed the following: pygame.image.load('assets/Flappy Bird.png') However, when I ran the script it was showing an error message - File not found Please advise me on how to upload the sp

Re: 'Pygame Module' not working

2021-07-31 Thread Dennis Lee Bieber
On Sat, 31 Jul 2021 14:07:05 +0530, 37_VA_VEER CHAKRABORTY declaimed the following: >pygame.image.load('assets/Flappy Bird.png') >However, when I ran the script it was showing an error message - File not >found >Please advise me on how to upload the sprites and where I was going wrong. F

Re: 'Pygame Module' not working

2021-07-31 Thread Michael F. Stemper
On 31/07/2021 03.37, 37_VA_VEER CHAKRABORTY wrote: Hi, I am a beginner in Python and I have started with the 'Pygame' module. I was making a 'Flappy Bird' game with the module with the help of Youtube videos. I was able to create a blank window. I had downloaded the game asse

'Pygame Module' not working

2021-07-31 Thread 37_VA_VEER CHAKRABORTY
Hi, I am a beginner in Python and I have started with the 'Pygame' module. I was making a 'Flappy Bird' game with the module with the help of Youtube videos. I was able to create a blank window. I had downloaded the game assets in my computer in a folder called 'Python&#

library not initialized pygame

2021-05-04 Thread Quentin Bock
code: #imports and variable for loop import pygame running = True #initializes pygame pygame.init() pygame.mixer.init() pygame.font.init() #creates the pygame window screen = pygame.display.set_mode((1200, 800)) #Title and Icon of window pygame.display.set_caption("3.02 Project&q

Re: library not initialized (pygame)

2021-05-02 Thread Michael Torrie
t can't find the icon png file. But the window briefly appears and it seems like pygame is being initialized properly. -- https://mail.python.org/mailman/listinfo/python-list

library not initialized (pygame)

2021-05-02 Thread Quentin Bock
Code: #imports and variables for game import pygame from pygame import mixer running = True #initializes pygame pygame.init() #creates the pygame window screen = pygame.display.set_mode((1200, 800)) #Title and Icon of window pygame.display.set_caption("3.02 Project") icon = pygame.

Re: pygame font issue

2021-03-13 Thread Irv Kalb
You need to initialize the font system with this line before you attempt to load a font: pygame.font.init() Irv > On Mar 13, 2021, at 8:11 AM, MRAB wrote: > > On 2021-03-13 15:20, Quentin Bock wrote: >> Code that contains the problem: >> score_value = 0 >> font = pygame.font.SysFont('

Re: pygame font issue

2021-03-13 Thread MRAB
On 2021-03-13 15:20, Quentin Bock wrote: Code that contains the problem: score_value = 0 font = pygame.font.SysFont('freesansbold.ttf', 32) error: in font_constructor font = Font(fontpath, size) pygame.error: font not initialized Can someone explain why it's saying font not initialized and pro

pygame font issue

2021-03-13 Thread Quentin Bock
Code that contains the problem: score_value = 0 font = pygame.font.SysFont('freesansbold.ttf', 32) error: in font_constructor font = Font(fontpath, size) pygame.error: font not initialized Can someone explain why it's saying font not initialized and provide a solution? I have tried typing in the

Re: pygame "font not intialized"

2021-03-12 Thread 2QdxY4RzWzUUiLuE
On 2021-03-12 at 17:27:36 -0500, Quentin Bock wrote: > my code is almost identical to this so I hope it's okay that I don't > include all of my code > error message: > font = pygame.font.Font('freesansbold.ttf', 32) > pygame.error: font not initialized > > Tutorial Link: https://www.youtube.com/

pygame "font not intialized"

2021-03-12 Thread Quentin Bock
my code is almost identical to this so I hope it's okay that I don't include all of my code error message: font = pygame.font.Font('freesansbold.ttf', 32) pygame.error: font not initialized Tutorial Link: https://www.youtube.com/watch?v=FfWpgLFMI7w Timestamp to this part of the video: 1:55:08 --

Re: pygame errors

2021-03-06 Thread MRAB
On 2021-03-07 03:01, Quentin Bock wrote: #Space Invaders! #Title and Icon pygame.display.set_caption("Space Invaders") icon = pygame.image.load('space-invaders.png') pygame.display.set_icon(icon) #Player player_Image = pygame.image.load('player.png') player_X = 370 player_Y = 480 def player():

pygame errors

2021-03-06 Thread Quentin Bock
#Space Invaders! #Title and Icon pygame.display.set_caption("Space Invaders") icon = pygame.image.load('space-invaders.png') pygame.display.set_icon(icon) #Player player_Image = pygame.image.load('player.png') player_X = 370 player_Y = 480 def player(): screen.blit(player_Image, player_X, play

Re: trouble using pygame

2021-03-05 Thread MRAB
On 2021-03-06 02:54, Quentin Bock wrote: So, I recently downloaded the pygame module, this code is from a youtube tutorial by the way, I am following along the tutorial, the error involves the pygame.init() and also says this: import pygame # Initialize Pygame pygame.init() #create the screen

trouble using pygame

2021-03-05 Thread Quentin Bock
So, I recently downloaded the pygame module, this code is from a youtube tutorial by the way, I am following along the tutorial, the error involves the pygame.init() and also says this: import pygame # Initialize Pygame pygame.init() #create the screen screen = pygame.display.set_mode((800, 600

Problem running Pygame Zero

2020-12-21 Thread peter walker
Hi I hope you can help. I am trying to use pygame zero (working with my 10 year old grandson) but it won't run anything ( I did have it running for a little while now nothing). Below are the results of: 1. Installing pygame zero 2. Running a listing (whatever I run I get the

Re: Turning pygame apps into add-ons

2020-06-10 Thread DL Neil via Python-list
On 11/06/20 1:32 AM, elisha hollander wrote: I have a folder with my pygame apps, I want to build a program to have a nice interface to access those apps from, I want it to be like an actual computer, so, I need it to open the apps as rect of something not as external apps. Is there a way to do

Turning pygame apps into add-ons

2020-06-10 Thread elisha hollander
I have a folder with my pygame apps, I want to build a program to have a nice interface to access those apps from, I want it to be like an actual computer, so, I need it to open the apps as rect of something not as external apps. Is there a way to do it without changing all the codes? (I can

Re: Can't download Pygame and Pgzero

2020-06-06 Thread Souvik Dutta
> > I have trouble installing the Pygame and Pgzero on Window. I based on > > the instruction on the "Computer Coding Python Games for Kids" by Carol > > Vorderman. Nothing works. > > > I tried Python 3.6.2 as describe in the book and the latest version > &

Re: Can't download Pygame and Pgzero

2020-06-06 Thread Tushar Upadhyay
Stop all the message and mails On Sat, 6 Jun 2020, 6:03 pm , wrote: > Il giorno venerdì 5 giugno 2020 18:35:10 UTC+2, Lily Sararat ha scritto: > > To whom it may concern, > > I have trouble installing the Pygame and Pgzero on Window. I based on > the instruction on the "

Re: Can't download Pygame and Pgzero

2020-06-06 Thread edmondo . giovannozzi
Il giorno venerdì 5 giugno 2020 18:35:10 UTC+2, Lily Sararat ha scritto: > To whom it may concern, > I have trouble installing the Pygame and Pgzero on Window.  I based on the > instruction on the "Computer Coding Python Games for Kids" by Carol > Vorderman.  Nothing wor

Re: Can't download Pygame and Pgzero

2020-06-05 Thread Rhodri James
On 05/06/2020 11:54, Lily Sararat via Python-list wrote: I have trouble installing the Pygame and Pgzero on Window. I based on the instruction on the "Computer Coding Python Games for Kids" by Carol Vorderman. Nothing works. I tried Python 3.6.2 as describe in the book and

Re: Can't download Pygame and Pgzero

2020-06-05 Thread Lily Sararat via Python-list
To whom it may concern, I have trouble installing the Pygame and Pgzero on Window.  I based on the instruction on the "Computer Coding Python Games for Kids" by Carol Vorderman.  Nothing works.   I tried Python 3.6.2 as describe in the book and the latest version 3.8.3 still encoun

Re: Fwd: Problem installing pygame

2019-12-14 Thread MRAB
On 2019-12-14 02:12, Eric Gonzalez wrote: Get Outlook for Android<https://aka.ms/ghei36> From: Eric Gonzalez Sent: Thursday, December 12, 2019 9:35:40 PM To: python-list@python.org Subject: Problem installing pygame Hello, with the above mentioned i am

Fwd: Problem installing pygame

2019-12-14 Thread Eric Gonzalez
Get Outlook for Android<https://aka.ms/ghei36> From: Eric Gonzalez Sent: Thursday, December 12, 2019 9:35:40 PM To: python-list@python.org Subject: Problem installing pygame Hello, with the above mentioned i am having some serious problems wi

Re: Trouble trying to get started with pygame

2019-11-15 Thread René Dudfield
Hi, it's possible to have multiple processes running with separate pygame windows. However you need to communicate with an inter process mechanism. For example by running a web server over TCP/ip/sockets, or UDP with OSC, or shared memory with mmap, or even via clipboard copy/paste, the h

Re: Trouble trying to get started with pygame

2019-11-14 Thread originallmoney
On Tuesday, November 12, 2019 at 7:05:16 PM UTC-5, Terry Reedy wrote: > On 11/12/2019 2:32 PM, originallmo...@gmail.com wrote: > > I'm curious: I've been seeing people having multiple pygame programs open > > at once (Where each one is a component of a main program,

Re: Trouble trying to get started with pygame

2019-11-12 Thread Terry Reedy
On 11/12/2019 2:32 PM, originallmo...@gmail.com wrote: I'm curious: I've been seeing people having multiple pygame programs open at once (Where each one is a component of a main program, obviously). Multiple programs open at once on modern machines is normal. Do you mean multip

Re: Trouble trying to get started with pygame

2019-11-12 Thread originallmoney
I'm curious: I've been seeing people having multiple pygame programs open at once (Where each one is a component of a main program, obviously). If I'm making a larger game, do I NEED to do that? I'm assuming I'd need a Visual Studio extension for Python in ord

Re: Trouble trying to get started with pygame

2019-11-08 Thread originallmoney
On Thursday, November 7, 2019 at 1:21:37 AM UTC-5, illume wrote: > Hi, > > either use python 3.7, or use the pre-release of pygame 2. > py -m pip install pygame==2.0.0.dev6 > > We're not going to do a python 3.8 release for pygame 1.9.x > > > cheers, Well, it

Re: Trouble trying to get started with pygame

2019-11-06 Thread René Dudfield
Hi, either use python 3.7, or use the pre-release of pygame 2. py -m pip install pygame==2.0.0.dev6 We're not going to do a python 3.8 release for pygame 1.9.x cheers, On Thu, Nov 7, 2019 at 7:06 AM wrote: > > > Well, "py -m pip install pygame" has come the clo

Re: Trouble trying to get started with pygame

2019-11-06 Thread originallmoney
> > Well, "py -m pip install pygame" has come the closest so far to working. I > > saw it try to load it and everything, but then, it spat out a series of > > errors, but, the primary one seemed to be this: > > > > WARNING, No "Setup" File Ex

Re: Trouble trying to get started with pygame

2019-11-06 Thread MRAB
On 2019-11-07 02:26, originallmo...@gmail.com wrote: Can py find Python? Did you try to install pygame with: py -m pip install pygame Well, "py -m pip install pygame" has come the closest so far to working. I saw it try to load it and everything, but then, it spat out a series

Re: Trouble trying to get started with pygame

2019-11-06 Thread originallmoney
> Can py find Python? > > Did you try to install pygame with: > > py -m pip install pygame Well, "py -m pip install pygame" has come the closest so far to working. I saw it try to load it and everything, but then, it spat out a series of errors, but, the prim

Re: Trouble trying to get started with pygame

2019-11-04 Thread MRAB
;ve just tried installing another version of Python on the D drive. It worked for me. Did you _install_ it onto drive D? When in doubt, uninstall and then re-install again. See if that fixes it. I uninstalled, then reinstalled. However, when I tried to install pygame, it told me: "Neither &#

Re: Trouble trying to get started with pygame

2019-11-03 Thread originallmoney
> > Specifically, it says "No Installed Pythons Found". > > > I've just tried installing another version of Python on the D drive. It > worked for me. > > Did you _install_ it onto drive D? > > When in doubt, uninstall and then re-install again.

Re: Trouble trying to get started with pygame

2019-11-03 Thread MRAB
On 2019-11-04 01:52, originallmo...@gmail.com wrote: On Friday, November 1, 2019 at 11:17:42 PM UTC-4, MRAB wrote: On 2019-11-02 02:28, originallmo...@gmail.com wrote: > I tried what you suggested at the command prompt and (Despite being able to open Python from my start menu), it tells me Pyth

Re: Trouble trying to get started with pygame

2019-11-03 Thread originallmoney
On Friday, November 1, 2019 at 11:17:42 PM UTC-4, MRAB wrote: > On 2019-11-02 02:28, originallmo...@gmail.com wrote: > > I tried what you suggested at the command prompt and (Despite being able to > > open Python from my start menu), it tells me Python isn't installed. > > > > I'm curious, and, I

Re: Trouble trying to get started with pygame

2019-11-01 Thread MRAB
On 2019-11-02 02:28, originallmo...@gmail.com wrote: I tried what you suggested at the command prompt and (Despite being able to open Python from my start menu), it tells me Python isn't installed. I'm curious, and, I probably should have mentioned it earlier: I have Python on my D drive (Beca

Re: Trouble trying to get started with pygame

2019-11-01 Thread MRAB
ith even then. I'm using Python 3.8 on my Windows 7 laptop. Python itself works so far as I can tell. I can get it to import pip without problems, but, when I try to get going with pygame, I hit a roadblock. > > I have pygame 1.9.6.tar.gz. Apparently, I don't have the means of un

Re: Trouble trying to get started with pygame

2019-11-01 Thread originallmoney
I tried what you suggested at the command prompt and (Despite being able to open Python from my start menu), it tells me Python isn't installed. I'm curious, and, I probably should have mentioned it earlier: I have Python on my D drive (Because it has more space). Is THAT why it says Python isn

Re: Trouble trying to get started with pygame

2019-11-01 Thread originallmoney
hon 3.8 on my > > Windows 7 laptop. Python itself works so far as I can tell. I can get it to > > import pip without problems, but, when I try to get going with pygame, I > > hit a roadblock. > > > > I have pygame 1.9.6.tar.gz. Apparently, I don't have the mea

Re: Trouble trying to get started with pygame

2019-10-31 Thread MRAB
import pip without problems, but, when I try to get going with pygame, I hit a roadblock. I have pygame 1.9.6.tar.gz. Apparently, I don't have the means of unzipping it, yet, I think I've seen things on other forums suggesting that Python can do that for me. Is that true? Actually,

Trouble trying to get started with pygame

2019-10-31 Thread originallmoney
It's been years since I've done anything with Python, and it wasn't a language I was terribly familiar with even then. I'm using Python 3.8 on my Windows 7 laptop. Python itself works so far as I can tell. I can get it to import pip without problems, but, when I try to get

RE: EXTERNAL: downloading python 3.6.0 with pygame

2017-05-02 Thread Joaquin Henriquez
>please i need tour help,how can i download python 3.6.0 together with >pygame? Dwnload and install python 3.6 and then with the pip module - pip install pygame You can also download pygame from pypi and install it manually. -- https://mail.python.org/mailman/listinfo/python-list

downloading python 3.6.0 with pygame

2017-05-02 Thread tamale JIMMY
please i need tour help,how can i download python 3.6.0 together with pygame? -- https://mail.python.org/mailman/listinfo/python-list

Re: Serialising an 8x8x8 array of pygame sounds

2016-09-18 Thread Peter Otten
kerbingamer376 wrote: > On Sunday, September 18, 2016 at 2:59:10 PM UTC+1, Steve D'Aprano wrote: >> On Sun, 18 Sep 2016 11:20 pm, kerbingamer376 wrote: >> >> > Is it possible to serialise an 8x8x8 array of pygame.mixer.Sound >> > objects, so they stay at the same places in the array, but in a for

Re: Serialising an 8x8x8 array of pygame sounds

2016-09-18 Thread kerbingamer376
On Sunday, September 18, 2016 at 2:59:10 PM UTC+1, Steve D'Aprano wrote: > On Sun, 18 Sep 2016 11:20 pm, kerbingamer376 wrote: > > > Is it possible to serialise an 8x8x8 array of pygame.mixer.Sound objects, > > so they stay at the same places in the array, but in a format that can be > > pickled,

Re: Serialising an 8x8x8 array of pygame sounds

2016-09-18 Thread Steve D'Aprano
On Sun, 18 Sep 2016 11:20 pm, kerbingamer376 wrote: > Is it possible to serialise an 8x8x8 array of pygame.mixer.Sound objects, > so they stay at the same places in the array, but in a format that can be > pickled, and then the opposite (read from that back to pygame.mixer.Sound > objects)? Can y

Serialising an 8x8x8 array of pygame sounds

2016-09-18 Thread kerbingamer376
Is it possible to serialise an 8x8x8 array of pygame.mixer.Sound objects, so they stay at the same places in the array, but in a format that can be pickled, and then the opposite (read from that back to pygame.mixer.Sound objects)? Thanks (copied from stackoverflow question @ https://is.gd/JDtU

Re: pygame easy create

2016-05-10 Thread harirammanohar
UTC+5:30, hariram...@gmail.com > > > wrote: > > > > is there anyway (IDE/package) that allows me to create graphics/game > > > > just like that (by instructing..., if i say create hills on the screen, > > > > it should generate pygame code)Anyway :

Re: pygame easy create

2016-05-09 Thread harirammanohar
to create graphics/game just > > > like that (by instructing..., if i say create hills on the screen, it > > > should generate pygame code)Anyway :) :) > > > > Atleast i tried with pyglet,felt that it will be easier than pygame. > > still again

Re: pygame easy create

2016-05-09 Thread harirammanohar
to create graphics/game just > > > like that (by instructing..., if i say create hills on the screen, it > > > should generate pygame code)Anyway :) :) > > > > Atleast i tried with pyglet,felt that it will be easier than pygame. > > still again

Re: pygame easy create

2016-05-09 Thread sohcahtoa82
s on the screen, it > > should generate pygame code)Anyway :) :) > > Atleast i tried with pyglet,felt that it will be easier than pygame. > still again throwing me error some GL is missed, why they wont be straight > forward in working if we select the env we hav

Re: pygame easy create

2016-05-09 Thread harirammanohar
On Monday, May 9, 2016 at 10:50:47 AM UTC+5:30, hariram...@gmail.com wrote: > is there anyway (IDE/package) that allows me to create graphics/game just > like that (by instructing..., if i say create hills on the screen, it should > generate pygame code)Anyway :) :) is there a

Re: pygame easy create

2016-05-09 Thread harirammanohar
On Monday, May 9, 2016 at 10:50:47 AM UTC+5:30, hariram...@gmail.com wrote: > is there anyway (IDE/package) that allows me to create graphics/game just > like that (by instructing..., if i say create hills on the screen, it should > generate pygame code)Anyway :) :) Atleast i t

pygame easy create

2016-05-08 Thread harirammanohar
is there anyway (IDE/package) that allows me to create graphics/game just like that (by instructing..., if i say create hills on the screen, it should generate pygame code)Anyway :) :) -- https://mail.python.org/mailman/listinfo/python-list

Re: Running PyGame on OS X

2016-04-26 Thread Ian Kelly
On Tue, Apr 26, 2016 at 3:33 PM, D.M. Procida wrote: > I have PyGame installed. > > As soon as I run pygame.init() or pygame.display.init(), a PyGame icon > will pop up in the Dock, and then its application will simply stop > responding. Needless to say, I can't actually

Running PyGame on OS X

2016-04-26 Thread D.M. Procida
I have PyGame installed. As soon as I run pygame.init() or pygame.display.init(), a PyGame icon will pop up in the Dock, and then its application will simply stop responding. Needless to say, I can't actually do anything with it. What is this application, and what is likely the problem wi

Re: a problem with importing pygame

2016-04-22 Thread Tim Golden
I got a 32 bit or a 64 bit pygame for a windows machine. The > program does not import pygame, it says that there is no module named > pygame. > Kiril. Your description of the problem isn't quite clear. If you haven't, I suggest you: * Download Python 3.4 from here: http

a problem with importing pygame

2016-04-22 Thread Kiril Bard
I use python for my school work and I wanted to download it at home. I had my teacher download the version to a flash drive and it still doesn't seem to work. The version that I got from the flash drive was python 3.4.2 and I think I got a 32 bit or a 64 bit pygame for a windows machine

Re: Interaction between pygame and python

2016-03-14 Thread Chris Angelico
erating system and Python version, >> > everything will be taken care of for you. >> > >> > Since you are using Python 3.5.1 on a windows box, you'll >> > want to download and install the executable named >> > "pygame-1.9.1-py3.1.msi". You can get

Re: Interaction between pygame and python

2016-03-14 Thread Rick Johnson
r you. > > > > Since you are using Python 3.5.1 on a windows box, you'll > > want to download and install the executable named > > "pygame-1.9.1-py3.1.msi". You can get it here: > > > > http://www.pygame.org/download.shtml > > Unfortunately

Re: Interaction between pygame and python

2016-03-14 Thread Ian Kelly
t; want to download and install the executable named > "pygame-1.9.1-py3.1.msi". You can get it here: > > http://www.pygame.org/download.shtml Unfortunately that installer is not appropriate for the OP's Python version. The downloads on the pygame site are horrifically o

Re: Interaction between pygame and python

2016-03-14 Thread Terry Reedy
On 3/14/2016 12:53 PM, Rick Johnson wrote: Since you are using Python 3.5.1 on a windows box, you'll want to download and install the executable named "pygame-1.9.1-py3.1.msi". You can get it here: http://www.pygame.org/download.shtml Or get pygame-1.9.2a0-cp35-none-win3

Re: Interaction between pygame and python

2016-03-14 Thread Rick Johnson
On Monday, March 14, 2016 at 3:28:40 AM UTC-5, Tyson wrote: > I am having a lot of trouble getting python to find the > pygame module; my operating system is Windows 7. Can you > offer any help? . Should I download pygame into the same > folder as Python? . any ideas at all? If y

Re: Interaction between pygame and python

2016-03-14 Thread Ian Kelly
On Mar 14, 2016 2:34 AM, "Tyson" wrote: > > I am having a lot of trouble getting python to find the pygame module; my > operating system is Windows 7. Can you offer any help? . Should I > download pygame into the same folder as Python? . any ideas at all? In what form d

Interaction between pygame and python

2016-03-14 Thread Tyson
I am having a lot of trouble getting python to find the pygame module; my operating system is Windows 7. Can you offer any help? . Should I download pygame into the same folder as Python? . any ideas at all? Python 3.5.1 (v3.5.1:37a07cee5969, Dec 6 2015, 01:38:48) [MSC v.1900 32 bit (Intel

Re: Installing pygame

2016-01-21 Thread jacob Kruger
I literally just installed pyGame under 3.5.1, using following .whl file that pulled off a site offering collections of .whl files: http://www.lfd.uci.edu/~gohlke/pythonlibs/ And, according to following page, the command of pi3p install ...followed by name of .whl file... handled installing

Installing pygame

2016-01-21 Thread John Mycroft
Hi! I have now spent several hours trying to install Pygame with Python 3.5. I have installed from a msi file "successfully" but "import pygame" fails either because Python can't find pygame or because "%1 is not a valid .DLL". I have followed the instruc

Re: pygame basic question

2015-09-08 Thread Ian Kelly
On Tue, Sep 8, 2015 at 8:01 AM, Dave Farrance wrote: > "ast" wrote: > >>DISPLAYSURF = pygame.display.set_mode((400, 300)) >>pygame.display.set_caption('Hello World!') >> >>The first line opens a 400x300 pygame window. >>The second one wri

Re: pygame basic question

2015-09-08 Thread Dave Farrance
"ast" wrote: >DISPLAYSURF = pygame.display.set_mode((400, 300)) >pygame.display.set_caption('Hello World!') > >The first line opens a 400x300 pygame window. >The second one writes "Hello World" on top of it. > >I am just wondering how functio

Re: pygame basic question

2015-09-08 Thread Mark Lawrence
On 08/09/2015 11:14, Laura Creighton wrote: Try the pygame mailing list for that one. http://www.pygame.org/wiki/info?action=view&id=4890 Laura Or https://www.reddit.com/r/pygame -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language.

Re: pygame basic question

2015-09-08 Thread Laura Creighton
Try the pygame mailing list for that one. http://www.pygame.org/wiki/info?action=view&id=4890 Laura -- https://mail.python.org/mailman/listinfo/python-list

pygame basic question

2015-09-08 Thread ast
Hi DISPLAYSURF = pygame.display.set_mode((400, 300)) pygame.display.set_caption('Hello World!') The first line opens a 400x300 pygame window. The second one writes "Hello World" on top of it. I am just wondering how function set_caption finds the windows since the windo

Question on Pygame

2015-05-08 Thread Desmond Lim
I am trying to install pygame on my computer to get the webcame working. After going through the process on http://juliaelman.com/blog/2013/04/02/installing-pygame-on-osx-mountain-lio n/, I was able to download the required software and folders, but now I am met with this problem below with the

Re: Installing PyGame?

2014-04-26 Thread Andrea D'Amore
On 2014-04-25 23:42:33 +, Gregory Ewing said: That's fine if it works, but the OP said he'd already tried various things like that and they *didn't* work for him. By reading the "original" message (the empty reply with full quote of a ten months earlier message) I couldn't figure what the

Re: Installing PyGame?

2014-04-26 Thread Andrea D'Amore
On 2014-04-25 23:57:21 +, Gregory Ewing said: I don't know what you're doing to hose your system that badly. I've never had a problem that couldn't be fixed by deleting whatever the last thing was I added that caused it. The actual problem with the "native MacOSX way" is that there's no of

Re: Installing PyGame?

2014-04-25 Thread Gregory Ewing
Ryan Hiebert wrote: > I've chosen to use MacPorts because it keeps things separate, because when things get hosed using the system libraries, I don't have to erase my whole system to get back to a "vanilla" OS X install. I don't know what you're doing to hose your system that badly. I've neve

Re: Installing PyGame?

2014-04-25 Thread Gregory Ewing
Ned Deily wrote: I disagree that installing a bunch of disparate software from various sources via binary installers and/or source is to be preferred to a modern third-party package manager on OS X like MacPorts or Homebrew. That's just setting yourself up for a long-term maintenance headache

Re: Installing PyGame?

2014-04-24 Thread Ryan Hiebert
of Python and framework versions of > > the various libraries that PyGame uses. > > FYI, MacPorts Pythons are framework installations. And I disagree that > installing a bunch of disparate software from various sources via binary > installers and/or source is to be preferred to a mo

Re: Installing PyGame?

2014-04-24 Thread Ned Deily
In article , Gregory Ewing wrote: > My advice would be to steer clear of things like Fink and MacPorts > and do things the native MacOSX way wherever possible. That means > using a framework installation of Python and framework versions of > the various libraries that PyGame uses. F

Re: Installing PyGame?

2014-04-24 Thread Gregory Ewing
LE at all. I do all my Python development on MacOSX using BBEdit Lite and the Terminal. If nothing else, you can try out pygame that way to see whether your problem is a pygame-related one or something else. -- Greg -- https://mail.python.org/mailman/listinfo/python-list

Re: Installing PyGame?

2014-04-24 Thread Gregory Ewing
rohit782...@gmail.com wrote: On Saturday, June 8, 2013 9:37:44 PM UTC+5:30, Eam onn wrote: Now I have a bigger problem: HOW THE HECK DO I INSTALL PYGAME!?!?! System Details: I've tried using MacPorts, Fink, the Mac DMG, source installing, installing NumPY, just about every way possible.

Re: Installing PyGame?

2014-04-24 Thread Steven D'Aprano
On Thu, 24 Apr 2014 15:15:09 -0400, Terry Reedy wrote: > On 4/24/2014 11:32 AM, rohit782...@gmail.com wrote: > > When you post, please do more than just quote. If you are relaying a > private email, please say so. > >> On Saturday, June 8, 2013 9:37:44 PM UTC+5:30, Eam onn wrote: > > I did not

Re: Installing PyGame?

2014-04-24 Thread Terry Reedy
pygame/numpy problems] ... I do have Window's installed, as well as Ubuntu 11.04 but I would like to use Mac OS X if possible. I've tried using MacPorts, Fink, the Mac DMG, source installing, installing NumPY, just about every way possible. I can't seem to get it working, I keep getting

Re: Installing PyGame?

2014-04-24 Thread rohit782192
On Saturday, June 8, 2013 9:37:44 PM UTC+5:30, Eam onn wrote: > Perhaps this isn't the right place to post this, but it's the only place I > could find. > > > > I asked yesterday or the day before about Python Game Development, and have > found a few tutorials

Re: Python 3.3 and Pygame 19.2a install problems

2014-02-03 Thread Terry Reedy
On 2/3/2014 1:55 PM, MRAB wrote: On 2014-02-03 06:43, Terry Reedy wrote: It is possible that the VC++2010 runtime does not work with XP, but requires Vista+ and that the Microsoft installer installs the older VC++2008 runtime on XP even when installing 3.3. If you install for a single user, th

Re: Python 3.3 and Pygame 19.2a install problems

2014-02-03 Thread MRAB
On 2014-02-03 06:43, Terry Reedy wrote: On 2/2/2014 10:04 PM, edvoge...@gmail.com wrote: Traceback (most recent call last): File "C:\Users\Ed\Documents\SOMA\Minecraft and Python\inventwithpython_src\dodger.py", line 1, in >> import pygame, random, sys File "C:\Pytho

Re: Python 3.3 and Pygame 19.2a install problems

2014-02-03 Thread edvogel56
On Monday, February 3, 2014 12:43:06 AM UTC-6, Terry Reedy wrote: > On 2/2/2014 10:04 PM, EdV wrote: > > > > >> Traceback (most recent call last): File > > >> "C:\Users\Ed\Documents\SOMA\Minecraft and > > >> Python\inventwithpython_src\dodg

Re: Python 3.3 and Pygame 19.2a install problems

2014-02-02 Thread Terry Reedy
On 2/2/2014 10:04 PM, edvoge...@gmail.com wrote: Traceback (most recent call last): File "C:\Users\Ed\Documents\SOMA\Minecraft and Python\inventwithpython_src\dodger.py", line 1, in >> import pygame, random, sys File "C:\Python33\lib\site-packages\pygame\__init__.py&qu

  1   2   3   4   5   6   >