Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #39938

Re: installation

Path csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <python-python-list@m.gmane.org>
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; 'interpreter': 0.04; 'installed.': 0.05; 'skip:p 60': 0.05; 'startup': 0.05; 'default.': 0.07; 'interpreter.': 0.07; 'subject:installation': 0.07; 'python': 0.09; 'alter': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'steve': 0.13; 'folder.': 0.16; 'installs': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'variable.': 0.16; 'wrote:': 0.17; 'shell': 0.18; 'file:': 0.22; 'installed': 0.23; 'command': 0.24; 'least': 0.25; 'header :User-Agent:1': 0.26; 'guess': 0.27; 'question': 0.27; 'there.': 0.28; 'header:X-Complaints-To:1': 0.28; 'environment': 0.29; 'skip:/ 40': 0.29; 'maybe': 0.29; 'framework': 0.30; 'window': 0.30; 'mac': 0.32; 'not.': 0.32; 'idle': 0.33; 'to:addr:python- list': 0.33; 'front': 0.33; "can't": 0.34; 'updated': 0.34; 'path': 0.35; 'open': 0.35; 'received:org': 0.36; 'but': 0.36; 'should': 0.36; 'charset:us-ascii': 0.36; 'available.': 0.37; 'does': 0.37; 'python.org': 0.37; 'subject:: ': 0.38; 'files': 0.38; 'delete': 0.38; 'to:addr:python.org': 0.39; 'where': 0.40; 'header:Received:5': 0.40; 'your': 0.60; 'profile': 0.61; 'latest': 0.61; 'export': 0.62; 'received:204': 0.72; 'article': 0.78; 'located.': 0.84; 'received:204.14': 0.84; 'skip:/ 30': 0.91
X-Injected-Via-Gmane http://gmane.org/
To python-list@python.org
From Ned Deily <nad@acm.org>
Subject Re: installation
Date Tue, 26 Feb 2013 01:09:28 -0800
References <445BF19A-2093-4910-97A5-7F23D6E642F4@insightbb.com>
Mime-Version 1.0
Content-Type text/plain; charset=US-ASCII
Content-Transfer-Encoding 7bit
X-Gmane-NNTP-Posting-Host 204.14.154.191
User-Agent MT-NewsWatcher/3.5.3b3 (Intel Mac OS X)
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.2536.1361869783.2939.python-list@python.org> (permalink)
Lines 31
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1361869783 news.xs4all.nl 6943 [2001:888:2000:d::a6]:35027
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:39938

Show key headers only | View raw


In article <445BF19A-2093-4910-97A5-7F23D6E642F4@insightbb.com>,
 Steve Pruitt <steve.pruitt@insightbb.com> wrote:

> I installed Python 3.3 for the Mac (10.6.8), but I did not get the 
> interpreter installed.  I get IDLE and the Launcher, but no interpreter.  At 
> least I can't find it.
> 
> I thought maybe it updated /System/Library/Frameworks/Python.framework.  No 
> luck.  I guess my question is how do I get the latest interpreter installed?

If you used one of the python.org installers for OS X, it installs into 
/Library/Frameworks/Python.framework.  /System/Library/Frameworks is 
where the Apple-supplied Pythons are located.  You should not attempt to 
alter or delete files there.

To use the new Python you should ensure that the framework bin directory 
is added to the front of your shell PATH environment variable.  For 
Python 2 installs, the installer does this automatically by default. For 
Python 3 installs, the installer does not.  However you can double-click 
the Update Shell Profile command in the /Applications/Python 3.3 folder.  
After it completes, open a new terminal window and you should find that 
python3.3 is now available.  You can also manually edit your 
.bash_profile or other relevant shell startup file:

PATH="/Library/Frameworks/Python.framework/Versions/3.3/bin:${PATH}"
export PATH

-- 
 Ned Deily,
 nad@acm.org

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: installation Ned Deily <nad@acm.org> - 2013-02-26 01:09 -0800

csiph-web