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
-1
votes
1 answer

Python setup.py - dont build wheel when running setup.py install

I want to use setup.py and all it's functionality but I don't want a wheel to be built for the installable project. Is there a flag or somthing just skip building wheel? The reason behind this is I am using a custom InstallCommand provided by…
Laimonas Sutkus
  • 3,247
  • 2
  • 26
  • 47
-1
votes
2 answers

unable to install specific libraries in Python

I am trying to install gevent with pip but failed to install it. Requirement already satisfied: gevent in c:\program files (x86)\python36-32\lib\site-packages (1.3.4) Requirement already satisfied: cffi>=1.11.5; sys_platform == "win32" and…
Damian
  • 325
  • 1
  • 3
  • 7
-1
votes
1 answer

whl file installation using command prompt

I'm using IDLE(3.6.0) 32 bit and I've tried installing some packages using pip install pocketsphinx-0.1.3-cp35-cp35m-win32.whl but i keep on getting an error saying: pocketsphinx-0.1.3-cp35-cp35m-win32.whl is not a supported wheel on this…
JNAZ
  • 1
  • 2
-1
votes
1 answer

Error while importing igraph

I am using Python 3.6 on Windows 7 and I have a problem with the igraph package. I was having errors while I was trying to install it using pip, so I decided to install it from the .whl file. Unfortunately, I couldn't find version appropriate for…
Jerry
  • 39
  • 1
  • 3
-1
votes
1 answer

Wheel built with MSVC Cython extension cannot find module

I'm attempting to switch from a GNU + mingwpy to an MSVC toolchain to build my wheel, which includes a Cython wrapper around a binary. I've built the external DLL with an MSVC toolchain in Appveyor, and, also in Appveyor, I've got the wheel build…
urschrei
  • 25,123
  • 12
  • 43
  • 84
-1
votes
1 answer

difficulty using pip to install bz2file

I'm trying to use pip to install the bz2file wheel for Windows, but encountering the following error. Does anyone know how I can proceed? c:\Python35-32>python -m pip install Lib\site-packages\bz2file-0.98-py2.py3-none-any.whl.url Invalid…
PurpleVermont
  • 1,179
  • 4
  • 18
  • 46
-1
votes
1 answer

How to make wheel package in python 2.7 on ubuntu

I have a problem, i am trying to package an application for learning purposes using setuptools in python 2.7 on Ubuntu. I am successfully able to create the wheel(.whl) file . I uploaded it to pypi and tried to download and install into other Ubuntu…
vivkv
  • 931
  • 2
  • 14
  • 29
-2
votes
2 answers

dlib is installed but unable to import (vs code)

I have installed dlib library successfully for python 3.10.4 on my computer using the traditional pip command. But after installing now I am trying to import the same and it is throwing error. Please help me out on the same.enter image description…
-2
votes
1 answer

Installing numpy 1.21.0 or earlier

I am looking to run a tslearn package - however, it throws an error on importing: "Numba needs NumPy 1.21 or less" When I attempt to install Numpy 1.21 via the command line pip install numpy==1.21.00 I get gigantic error code, ending in (full…
Adam
  • 29
  • 1
  • 6
-2
votes
1 answer

Failed building wheel for psycopg2. I put: "pip install psycopg2". I am on windows, with pycharm

Collecting psycopg2 Using cached psycopg2-2.9.1.tar.gz (379 kB) Preparing metadata (setup.py) ... done Building wheels for collected packages: psycopg2 Building wheel for psycopg2 (setup.py) ... error ERROR: Command errored out with exit status…
-2
votes
1 answer

failed to install syft

ERROR: Failed building wheel for netifaces Running setup.py clean for netifaces Failed to build netifaces Installing collected packages: netifaces, dnspython, win32-setctime, Werkzeug, torch, pylibsrtp, pyee, itsdangerous, google-crc32c,…
-2
votes
1 answer

Offline install of cryptography package fails

I'm trying to install offline the following dependencies : requests and Office365-REST-Python-Client in my production environnement. I downloaded zipped packages using : pip download - r requests.txt I got the following .whl When I try to run the…
isoman
  • 742
  • 2
  • 9
  • 34
-3
votes
1 answer

does python wheel remove yml files?

This is part of my docker file: RUN python setup.py sdist bdist_wheel RUN find dist -maxdepth 1 -mindepth 1 -name '*.tar.gz' -print0 | xargs -0 -I {} mv {} athena.tar.gz FROM python:3.7.4-slim after I build my docker file. I run my container bash…
Amir Abbas
  • 305
  • 3
  • 8
1 2 3
58
59