Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #60059
| Path | csiph.com!usenet.pasdenom.info!dedibox.gegeweb.org!gegeweb.eu!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!news.tele.dk!news.tele.dk!small.news.tele.dk!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; 'url:bitbucket': 0.05; 'installed.': 0.07; 'pypi': 0.07; 'python3': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'setup.py': 0.09; 'url:github': 0.09; 'subject:How': 0.10; 'python': 0.11; 'ez_setup.py': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'setuptools': 0.16; 'subject:install': 0.16; 'subject:python3': 0.16; 'travis': 0.16; 'uninstall': 0.16; 'url:pip': 0.16; 'url:py': 0.16; 'url:setuptools': 0.16; 'do,': 0.16; 'wrote:': 0.18; 'install': 0.23; 'header:User-Agent:1': 0.23; "i've": 0.25; 'header:X -Complaints-To:1': 0.27; 'installed': 0.27; 'cool': 0.30; '(unless': 0.31; 'python2.7': 0.31; 'stuff': 0.32; "i'd": 0.34; 'something': 0.35; 'point.': 0.35; 'but': 0.35; 'done': 0.36; 'charset:us-ascii': 0.36; 'subject:?': 0.36; 'url:org': 0.36; 'clear': 0.37; 'to:addr:python-list': 0.38; 'stock': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'new': 0.61; 'personal': 0.63; 'received:204': 0.75; 'article': 0.77; 'curl': 0.84; 'received:204.14': 0.84; 'untar': 0.84; 'url:master': 0.84; 'url:latest': 0.91 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| To | python-list@python.org |
| From | Ned Deily <nad@acm.org> |
| Subject | Re: How to install pip for python3 on OS X? |
| Date | Tue, 19 Nov 2013 23:27:37 -0800 |
| References | <1384797189.5610.10.camel@Xjuan> <201311182112.28092.gheskett@wdtv.com> <1384874917.5610.37.camel@Xjuan> <201311191057.55727.gheskett@wdtv.com> <6856A21C-57E8-4CDD-A9E8-5DD738C368A5@gmail.com> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=US-ASCII |
| Content-Transfer-Encoding | 7bit |
| X-Gmane-NNTP-Posting-Host | 204.14.154.233 |
| 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 | <https://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 | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.2956.1384932471.18130.python-list@python.org> (permalink) |
| Lines | 34 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1384932471 news.xs4all.nl 16010 [2001:888:2000:d::a6]:57838 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:60059 |
Show key headers only | View raw
In article <6856A21C-57E8-4CDD-A9E8-5DD738C368A5@gmail.com>, Travis Griggs <travisgriggs@gmail.com> wrote: > OSX (Mavericks) has python2.7 stock installed. But I do all my own personal > python stuff with 3.3. I just flushed my 3.3.2 install and installed the new > 3.3.3. So I need to install pyserial again. I can do it the way I've done it > before, which is: > > Download pyserial from pypi > untar pyserial.tgz > cd pyserial > python3 setup.py install > But I'd like to do like the cool kids do, and just do something like pip3 > install pyserial. But it's not clear how I get to that point. And just that > point. Not interested (unless I have to be) in virtualenv > yet.--------------------------------------------------------------------- http://www.pip-installer.org/en/latest/installing.html # download and install setuptools curl -O https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py python3 ez_setup.py # download and install pip curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py python3 get-pip.py # use pip to install python3 -m pip install pyserial # Don't want it? python3 -m pip uninstall pyserial -- Ned Deily, nad@acm.org
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: How to install pip for python3 on OS X? Ned Deily <nad@acm.org> - 2013-11-19 23:27 -0800
csiph-web