Path: csiph.com!usenet.pasdenom.info!gegeweb.org!newsfeed.kamp.net!newsfeed.kamp.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!194.109.133.85.MISMATCH!newsfeed.xs4all.nl!newsfeed6.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.010 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'subject:Python': 0.05; 'python': 0.08; 'writable': 0.09; '2.7': 0.13; 'why.': 0.15; 'apps.': 0.16; 'installed,': 0.16; 'lion': 0.16; 'skip:/ 50': 0.16; 'subject:Mac': 0.16; 'wrote:': 0.18; 'have:': 0.18; 'header :In-Reply-To:1': 0.22; 'thanks.': 0.24; 'users.': 0.28; 'message- id:@mail.gmail.com': 0.29; 'installed': 0.29; 'pm,': 0.29; 'installer': 0.30; 'user.': 0.31; 'app': 0.31; 'version': 0.32; 'thanks': 0.32; 'tue,': 0.32; 'typically': 0.32; 'there': 0.33; 'too': 0.33; 'puts': 0.34; 'to:addr:python-list': 0.35; 'install': 0.35; 'do?': 0.37; 'hello,': 0.37; 'but': 0.37; 'received:google.com': 0.37; 'skip:" 10': 0.37; 'received:209.85': 0.38; 'should': 0.38; 'third': 0.38; 'received:209': 0.39; 'to:addr:python.org': 0.40; '2011': 0.61; '12:42': 0.84 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding:x-gm-message-state; bh=rGKXOqeyQFG0hJuQkrPju/SzlfqR916p9erWrpcK9ak=; b=kXODRCra+WBEfmeteBrsn1yJ6AM6jT8vsJz4SlGXJkuV1nn8vO5q6o5eH9LpuTu5VA iuN824ssMUr3tQQLAQZDByNS0DIPqd1cYhLl3aHVs7onXo2soUmhlxVICPRqqcpZIOLn TLlvTkzRMLaivAhP8euHNNU0X+RJw8WJiRLYc74dpnhn1+5VFRDnaE9dYzOO8aT/SAN6 A0zc/qOJ/cVp3UEXg4HuTtRg+1eDQ42rzsep7TqgnVlA5YUKe4T9FI05Cei+NJ9iU8GF cjVtd9l8T5noFmcM1/CZUsjIY/Hl8bCEigDanO/JeKZcJ7+2JXQyVNWjaoz1frponU7b Q/xg== MIME-Version: 1.0 In-Reply-To: <15535377.495.1331656930882.JavaMail.geo-discussion-forums@ynje4> References: <2ffee45b-8987-4fb4-8c8b-c1eed728e890@glegroupsg2000goo.googlegroups.com> <15535377.495.1331656930882.JavaMail.geo-discussion-forums@ynje4> Date: Tue, 13 Mar 2012 15:28:37 -0400 Subject: Re: Installing Python Apps on Mac Lion From: Benjamin Kaplan To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQn8Z+kdAvIFU/QGt7TAnSg3jrOWkyIUPKB2E/rqoVxcjxg4MMB2hH+aBjxuPh4sKWAKVzEB X-Junkmail-Whitelist: YES (by domain whitelist at mpv1.tis.cwru.edu) X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 40 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1331666928 news.xs4all.nl 6869 [2001:888:2000:d::a6]:37057 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:21579 On Tue, Mar 13, 2012 at 12:42 PM, wrote: > > S=E1bado, 25 de Junho de 2011 02h20min49s UTC+1, JKPeck escreveu: > > The Lion version of the OS on the Mac comes with Python 2.7 installed, > > but it is in /System/Library/Frameworks/..., and this area is not writa= ble > > by third party apps. > > > > So is there a consensus on what apps that typically install under the > > Python site-packages directory should do in this situation? =A0Installi= ng > > Python from python.org puts it in the writable area > > /Library/Frameworks/Python.framework. > > > > So, what should a Python app installer do? > > > > Thanks > > Hello, > > currently I have: > > /Library/Python/2.7/ > /Library/Frameworks/Python.framework/Versions/2.7/ > /Users/user/Library/Python/2.7/ > > With 3 folders "site-packages" and do not know why. > What's the difference? > > Thanks. > If I had to take a guess, having not played too much with Lion: /Library/Python/2.7 is for user-installed packages for the system python that are installed for all users. /Library/Frameworks/... is for the user-installed Python (that's where it's always gone) /Users/user/Library... is for user-installed packages for the system Python that are only installed for the specific user.