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 cross platform download all the files(not all needed so unwanted)

Hi I want to download linux version package in windows env.(install on offline linux-server) I used the command: pip download --only-binary=:all: --platform linux_x86_64 --python-version 36 hyperopt to download package hyperopt and its dependencies…
cloudscomputes
  • 1,278
  • 13
  • 19
-1
votes
1 answer

can I start docker-compose within a pip package?

I am working on a project which consists of docker-compose.yml file (with published public docker images) together with environment files. Typically, a user would git clone the repo make the necessary changes to the environment files run…
japrescott
  • 4,736
  • 3
  • 25
  • 37
-1
votes
1 answer

python minor version in built wheel name

I am trying to include the minor python version in the name of a wheel built with pip wheel. My project is based on a pyproject.toml that specifies version number etc. and also requires a concrete minor version of python via…
-1
votes
1 answer

Installing local .whl files on Databricks cluster

I am trying to connect to a databricks cluster and install a local python whl using DatabricksSubmitRunOperator on Airflow (v2.3.2) with following configuration. However, it doesn't work and throws a fileNotFound exception (I checked file path…
-1
votes
1 answer

ERROR: failed building wheel when installing spectral-cube (astropy)

I'm trying to install the package spectral-cube from the astropy project using pip (22.0.4). I get a long error which ends with this: note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel…
Alex P
  • 93
  • 1
  • 6
-1
votes
1 answer

Save different version of wheel files of a python package into a local directory

I am running pip3 wheel -r requirements.txt -w /wheel_files/ command to store the wheel files of different packages into the local filesystem. I have package A of version v1 which internally depends on package C of version v3 and package B of…
-1
votes
1 answer

Struggling to Upload a Custom Wheel file to Azure Function Apps

We are trying to deploy a custom wheel file to our Azure Function App (as it will be deployed in clients env). However, we are facing numerous struggled in this. When we try and build locally using a local wheel file, during the build, it comes up…
-1
votes
1 answer

I am getting error while Failed building wheel for kivy command

ERROR: Failed building wheel for kivy Failed to build kivy ERROR: Could not build wheels for kivy, which is required to install pyproject.toml- based projects This is the source of speech to text file that is I try to install the owner of…
-1
votes
1 answer

gmpy2 installation error in vs code in pytho 39

tried instaliing microsoft visual studio still notinstalled ModuleNotFoundError: No module named 'gmpy2' PS C:\Users\USER\OneDrive\Desktop\sem1\fcs\Assignment 1> pip install gmpy2 Collecting gmpy2 Using cached gmpy2-2.0.8.zip (280 kB) Building…
-1
votes
1 answer

pythonnet installation failure

I did install Buildtools 14.0 from https://www.microsoft.com/en-US/download/details.aspx?id=48159 Despite that I am getting the following error when pip install pythonnet is being run Building wheels for collected packages: pythonnet Building…
ishandutta2007
  • 16,676
  • 16
  • 93
  • 129
-1
votes
1 answer

How to pip install Linux wheels from a Windows machine?

I'm using an Azure DevOps Pipeline to build a Python project (Azure Function). I want to stick with a Windows build agent and use PowerShell to pip install packages. Doing so results in many Python wheels that are appended with win_amd64.whl or…
ericOnline
  • 1,586
  • 1
  • 19
  • 54
-1
votes
1 answer

Impossible to install tensorflow with pip python

hello i have a problem for installing tensorflow in python with pip: i'm using pycharm with python 3.8 but when i want to install tensorflow i always get the same error: pip3 install tensorflow Collecting tensorflow Could not find a version that…
-1
votes
1 answer

Why does wheel installation put shared objects in site-packages folder instead of package folder?

I've a python binary distribution [wheel] created via python setup.py bdist_wheel The wheel looks as follows unzip -l dist/-1.0.0-cp36-cp36m-linux_x86_64.whl Archive: dist/-1.0.0-cp36-cp36m-linux_x86_64.whl Length …
Chaitanya Bapat
  • 3,381
  • 6
  • 34
  • 59
-1
votes
2 answers

Importing custom python module

I am creating pip package and before submitting I would like to try it. For simplification, lets assume that python script looks like this: def foo(): print("Hello World!") My setup.py containing metadata looks like: #!/usr/bin/env…
Ondrej
  • 817
  • 1
  • 9
  • 16
-1
votes
1 answer

Installing all the wheel packages in a directory is not working in Windows OS

I'm trying to clone all the packages of a venv from one PC to another(both having Windows OS). When I'm installing all the wheel packages on the second PC with this command pip install *.whl as suggested by AKX in his answer to my question, it's…
DevLoverUmar
  • 11,809
  • 11
  • 68
  • 98
1 2 3
58
59