Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #90676
| From | Mark Lawrence <breamoreboy@yahoo.co.uk> |
|---|---|
| Subject | pip grabs tar.gz file instead of whl? |
| Date | 2015-05-15 14:04 +0100 |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.38.1431695077.17265.python-list@python.org> (permalink) |
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