Questions tagged [python-wheel]

​​​​​​​​​​​​​​​​​​​​A wheel is a ZIP-like archive format for Python packages with the .whl extension.

Wheels were introduced to Python with PEP 427 to simplify distribution installation. It replaces the egg format.

Useful Links:

  1. PEP 376 Database of Installed Python Distributions infrastructure Wheels are based on
  2. PEP 427 Introduction of the Wheel format
  3. Wheel package index
883 questions
0
votes
1 answer

Pyspider Installation for Python 3.5/win 64 "Failed building wheel for lxml

I'm trying to install pyspider and always got "Failed building wheel for lxml...", It looks like the lxml is not installed properly and I've tried to download lxml-3.6.1-cp35-cp35m-win_amd64.whl from…
Li Yin
  • 1
0
votes
1 answer

pip install for whl files

I am trying to install scipy package for python 2.7 in windows, The process i followed is as follows: downloaded a whl file scipy-0.17.1-cp27-cp27m-win32.whl from http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy tried to install by pip install…
Wilvasini
  • 163
  • 4
  • 19
0
votes
1 answer

bdist_wheel not working under MSYS2

I'm attempting to build a Python package using under a MSYS2 MINGW64 shell on a Windows 7 VirtualBox VM. The package builds, installs and imports successfully on Linux. I can build a binary wheel under MSYS2... $ python setup.py bdist_wheel running…
nokome
  • 9,834
  • 3
  • 14
  • 15
0
votes
0 answers

Installing python gtk on windows 7 64-bit

I'm trying to install python gtk on a windows 7 64-bit machine. I'm following python pygtk windows 7 64 bit to do so. I've followed steps 1-4 in this link, and all was fine, but on step 5 (installing the libraries gtk,PyCairo,goobject), there are…
Charles
  • 947
  • 1
  • 15
  • 39
0
votes
1 answer

Python - Let pip only search locally for extra packages

Im trying to build an NSIS distributable, and this contains several packages. One of them is pyVISA-1.8 which needs the package enum34 to work. Now, I usually bundle all the wheels I need for the packages in the nsis script, but when I do this for…
enrm
  • 645
  • 1
  • 8
  • 22
0
votes
1 answer

Pip, Python Wheels and Numpy compilation Issues

I was using numpy with the MKL compilation however when developing a GUI program i hit the following OMP warning when numpy 1.9.2+MKL is packaged with py2exe Therefore I need to use the non-mkl numpy version, so I added the second wheel to my…
JamesD
  • 2,466
  • 24
  • 40
0
votes
1 answer

pandas and matplotlib not installed

I am using Docker and python3. I am trying to install some libraries but I have some issues. For example I was able to install numpy with pip3 install numpy, but I cannot install properly pandas and matplotlib; I get the following problems: Failed…
0
votes
1 answer

pip install package call setup.py install instead of setup.py bdist_wheel

I have create a private package and simply all things are well. setup.py bdist_wheel simply create the wheel for it and other commands works correct. also pip install package_xxx.whl works fine and installs the created wheel correctly. but when I…
wtayyeb
  • 1,879
  • 2
  • 18
  • 38
0
votes
0 answers

No matching distribution found for 'package' in python wheel

I have written a python package called lyrico and uploaded the source dist and wheel to testpypi site. lyrico But when I try to install it from there using following command it gives errors: pip install -i https://testpypi.python.org/pypi…
Abhimanyu Pathania
  • 335
  • 2
  • 7
  • 18
0
votes
1 answer

Pip not able to find wheel

I have a virtual environment. Since a couple of days I cannot run any pip commands and am getting the error: File "env/bin/pip", line 7, in from pip import main File "/env/lib/python2.7/site-packages/pip/__init__.py", line 15, in…
user3548288
  • 23
  • 2
  • 6
0
votes
1 answer

"TypeError: expected bytes, str found" when calling .MidiIn() from rtmidi-python

I installed rtmidi_python for Python 3.4.2 from the .whl provided on http://www.lfd.uci.edu/~gohlke/pythonlibs/, and the import works fine, but as soon as I call "rtmidi_python.MidiIn()", I get a TypeError as follows: Python 3.4.2…
0
votes
3 answers

Pip Wheel Package Installation Fail

I try to run pip wheel azure-mgmt=0.20.1, but whenever I run it I get following pip wheel error, which is very clear: error: [Error 183] Cannot create a file when that file already exists: 'build\\bdist.win32\\wheel\\azure_mgmt-0.20.0.data\\..' So…
Amir
  • 1,031
  • 2
  • 19
  • 42
0
votes
2 answers

trouble installing pygame on python 3.5

I have installed the whl file for pygame 1.9.2 for python 3.5 32 bit and have put it in "C:\Python35\Scripts". When i open a command window in the scripts folder and type pip3 install pygame-1.9.2a0-cp35-none-win32.whl it says Fatal error in…
0swald
  • 23
  • 1
  • 1
  • 5
0
votes
1 answer

python/pandas: moved a script, get attribute error

I have a working script on one system (python2.7, pandas 16), but when I moved it to a different system with python2.7 and pandas 17, the following line -- df["DATE"] = df["DATE"].map(lambda x: pd.datetools.parse(x)) generates the following…
mattrweaver
  • 729
  • 4
  • 14
  • 36
0
votes
1 answer

Why is Python package Fiona is searching for Microsoft.VC90.DebugCRT?

I installed Python package Fiona. When I try to import it in my application, I get the following error: File "C:\Anaconda3\lib\site-packages\fiona\collection.py", line 7, in from fiona.ogrext import Iterator, ItemsIterator,…
Rauni Lillemets
  • 2,299
  • 1
  • 26
  • 39