Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: "Tyson" Newsgroups: comp.lang.python Subject: Interaction between pygame and python Date: Sun, 13 Mar 2016 17:52:00 -0400 Lines: 33 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de M6AhJIlU9OIhrmLNwumrVAti/1kbfxGbA9VFw/S0auCQ== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'win32': 0.03; 'importerror:': 0.05; 'sys': 0.05; 'python': 0.10; 'subject:python': 0.14; 'all?': 0.16; 'help?': 0.16; 'pygame': 0.16; 'pygame,': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'subject:between': 0.16; 'python?': 0.18; '>>>': 0.20; 'windows': 0.20; '"",': 0.22; 'bit': 0.23; 'dec': 0.23; 'import': 0.24; '(most': 0.24; 'module': 0.25; 'skip:( 20': 0.28; 'folder': 0.30; 'skip:& 30': 0.30; 'getting': 0.33; 'traceback': 0.33; "skip:' 20": 0.34; 'file': 0.34; 'skip:& 20': 0.35; 'trouble': 0.35; 'skip:i 20': 0.36; 'should': 0.36; 'url:org': 0.36; 'to:addr :python-list': 0.36; 'skip:& 10': 0.37; 'operating': 0.37; 'url :rec-html40': 0.37; 'charset:us-ascii': 0.37; 'to:addr:python.org': 0.40; 'url:schemas': 0.40; 'url:office': 0.40; 'more': 0.63; 'received:50': 0.66; 'offer': 0.66; '3.5.1': 0.84 X-Mailer: Microsoft Outlook 14.0 Thread-Index: AdF5SUtLssibOo/vQqqABye61stJYg== Content-Language: en-us X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - ehub35.webhostinghub.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - d3ce.org X-Get-Message-Sender-Via: ehub35.webhostinghub.com: authenticated_id: ttyson@d3ce.org X-Authenticated-Sender: ehub35.webhostinghub.com: ttyson@d3ce.org X-Mailman-Approved-At: Mon, 14 Mar 2016 04:28:30 -0400 X-Content-Filtered-By: Mailman/MimeDel 2.1.21 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:104802 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)] on win32 Type "copyright", "credits" or "license()" for more information. >>> import pygame Traceback (most recent call last): File "", line 1, in import pygame ImportError: No module named 'pygame' >>> import pygame, sys Traceback (most recent call last): File "", line 1, in import pygame, sys ImportError: No module named 'pygame' >>>