Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #90676
| Path | csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!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; 'from:addr:yahoo.co.uk': 0.04; 'repository': 0.05; 'pypi': 0.07; 'subject:file': 0.07; 'deprecated': 0.09; 'host,': 0.09; 'lawrence': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'setup.py': 0.09; 'language.': 0.14; "wouldn't": 0.14; 'compiler.': 0.16; 'https': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'silence': 0.16; 'language': 0.16; 'trying': 0.19; 'file,': 0.19; 'install': 0.23; 'header :User-Agent:1': 0.23; 'url:edu': 0.26; 'header:X-Complaints-To:1': 0.27; 'locations': 0.30; "i'm": 0.30; "skip:' 10": 0.31; 'origin': 0.31; 'skip:c 30': 0.32; "i'd": 0.34; 'but': 0.35; 'located': 0.36; 'collecting': 0.36; 'doing': 0.36; 'subject:?': 0.36; 'step': 0.37; 'to:addr:python-list': 0.38; 'files': 0.38; 'skip:- 10': 0.38; 'hosted': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'skip:n 10': 0.64; 'our': 0.64; 'more': 0.64; 'direct': 0.67; 'secure': 0.71; '100%': 0.77; 'around,': 0.84; 'route': 0.84 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| To | python-list@python.org |
| From | Mark Lawrence <breamoreboy@yahoo.co.uk> |
| Subject | pip grabs tar.gz file instead of whl? |
| Date | Fri, 15 May 2015 14:04:19 +0100 |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=utf-8; format=flowed |
| Content-Transfer-Encoding | 7bit |
| X-Gmane-NNTP-Posting-Host | host-78-147-26-70.as13285.net |
| User-Agent | Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.20+ |
| 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.38.1431695077.17265.python-list@python.org> (permalink) |
| Lines | 30 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1431695077 news.xs4all.nl 2858 [2001:888:2000:d::a6]:34333 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:90676 |
Show key headers only | View raw
I was fed up with trying to install from pypi to Windows. Setup.py more
often than not wouldn't be able to find the VS compiler. So I thought
I'd try the direct route to the excellent Christoph Gohlke site at
http://www.lfd.uci.edu/~gohlke/pythonlibs/ which is all whl files these
days. However as you can see below despite my best efforts I'm still
processing the tar.gz file, so what am I doing wrong?
C:\Users\Mark\Documents\MyPython>pip install --no-cache-dir
--trusted-host http://www.lfd.uci.edu/ -U -f
http://www.lfd.uci.edu/~gohlke/pythonlibs/ numba
Collecting numba
This repository located at www.lfd.uci.edu is not a trusted host, if
this repository is available via HTTPS it is recommend to use HTTPS
instead, otherwise you may silence this warning with '--trusted-host
www.lfd.uci.edu'.
DEPRECATION: Implicitly allowing locations which are not hosted at a
secure origin is deprecated and will require the use of --trusted-host
in the future.
Downloading numba-0.18.2.tar.gz (507kB)
100% |################################| 507kB 373kB/s
I'm aware of the work around, download the file, then install the local
copy, but that's a whole extra step :)
--
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.
Mark Lawrence
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
pip grabs tar.gz file instead of whl? Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-05-15 14:04 +0100
csiph-web