Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.mixmin.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python,': 0.02; 'interpreter': 0.05; 'importerror:': 0.07; 'tkinter': 0.07; 'skip:\\ 10': 0.09; 'wrote': 0.14; 'cmd': 0.16; 'experimented': 0.16; 'skip:[ 30': 0.16; 'sys.path': 0.16; 'weird': 0.16; 'sender:addr:gmail.com': 0.17; 'wrote:': 0.18; 'module': 0.19; "skip:' 30": 0.19; 'help.': 0.21; 'seems': 0.21; 'import': 0.22; 'to:name:python-list@python.org': 0.22; 'certainly': 0.24; 'looks': 0.24; '---': 0.24; 'header:In-Reply-To:1': 0.27; 'installed': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'went': 0.31; "skip:' 10": 0.31; '"",': 0.31; '>>>>': 0.31; 'changed.': 0.31; "skip:' 40": 0.31; 'file': 0.32; 'skip:c 30': 0.32; '(most': 0.33; 'noticed': 0.34; 'something': 0.35; 'good.': 0.35; 'usual': 0.35; 'received:google.com': 0.35; 'idle': 0.36; 'doing': 0.36; 'to:addr:python-list': 0.38; 'recent': 0.39; 'does': 0.39; 'launch': 0.39; 'skip:. 10': 0.39; 'to:addr:python.org': 0.39; 'users': 0.40; 'more': 0.64; '20,': 0.68 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:content-type; bh=EPqfPzdp6xDGrvrj0W7+xPUpvy4qanBZjQYH/xPXYHM=; b=TxBmg2ol3LYcUbtbJsjM6vbKadWdKNcFSwSVatfKWcDW7bzgERU+Kf3PBIl044SNtz eGnPBBj3cmg1ilLKFRf93gwdWBwqLR/KkIJDf+7WRPDLmG6zXbHP9HuQS/A/0HM0ts6Z JLKhw2lS4eiIe+V9nyMB4d3aJhEvEn5vZ0FOxh5GFYmF7fzJzEudzxbnn2HK6TjG9R4i zwYZm6o0Bp3DcTRNEc8SXtUeP2Sa2/L8LJF/F13zVPnRYSCe0lDLjFhzeguM5zuEWZ/m PyaFam+pQBXs0+59rLlh5pN9zUwmd0INiNluZZAwwMesYz59650YKuhIRplCiHs5Q/gj TOkg== X-Received: by 10.50.67.83 with SMTP id l19mr8377553igt.38.1400619371111; Tue, 20 May 2014 13:56:11 -0700 (PDT) MIME-Version: 1.0 Sender: zachary.ware@gmail.com In-Reply-To: References: From: Zachary Ware Date: Tue, 20 May 2014 15:55:51 -0500 X-Google-Sender-Auth: yrm5p2zOPL0LMv2Z7QrotqPytTw Subject: Re: Putting Py 3.4.1 to work. To: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 35 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1400619373 news.xs4all.nl 2918 [2001:888:2000:d::a6]:60296 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:71829 On Tue, May 20, 2014 at 9:31 AM, wrote: > Experimented users have certainly noticed a lot of > things have changed. > > Short. I installed Py3.4.1, it overwrites c:\Python34 which > contained eg. PySide in ...\site-packages. > > So far, so good. I can launch Python, IDLE and my interactive > interpreter I wrote with tkinter via a cmd in dos, .bat, ... > > Now the questions. It seems all packages in \site-packages > are no more recognized. > What am I doing wrong? Why is "site-packages" no more > recognized, "forcing" sys.path does not seem to help. > > From my interactive interpreter: > >>>> --- > import PySide > Traceback (most recent call last): > File "", line 1, in > ImportError: No module named 'PySide' >>>> --- > sys.path > ['D:\\jm\\jmpy\\smid\\smid50beta1', 'C:\\Windows\\system32\\python34.zip', > 'C:\\Python34\\DLLs\\DLLs', 'C:\\Python34\\DLLs\\lib', 'C:\\Python34\\DLLs', > 'C:\\Python34\\DLLs\\lib\\site-packages'] This looks like something went weird in your installation, like you installed to 'C:\Python34\DLLs' instead of 'C:\Python34'. What path does sys.executable give? The usual location for site-packages is C:\Python34\Lib\site-packages, which is not listed. -- Zach