Top "Python-wheel" questions

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

pip uninstall: "No files were found to uninstall."

I have created a python module, call it 'foo_bar'. I can install it and I can upgrade it, but …

python-3.x pip uninstallation python-wheel
ValueError "Expected version spec" when installing local wheel via pip

I have a closed-source Python module I am developing and would like to share with people in my workplace. I …

python python-2.7 pip python-wheel
Control the pip version in virtualenv

How do I control the version of pip which is used in a freshly created venv? By default, it uses …

python pip virtualenv python-wheel python-venv
Python packaging: wheels vs tarball (tar.gz)

The advantage of wheels over eggs is clear (see section why not egg? https://pypi.python.org/pypi/wheel). However, …

python tar packaging python-wheel
Can't build wheel - error: invalid command 'bdist_wheel'

I've tried everything in this very related question: Why can I not create a wheel in python? But I still …

python pip setuptools python-wheel
List dependencies of Python wheel file

I have Python wheel file: psutil-5.4.5-cp26-none-linux_x86_64.whl How can I list the dependencies this wheel has?

python python-wheel
make pip ignore an existing wheel

If a .whl is available online, pip always installs it rather than compiling from source. However, for some specific module, …

python pip python-wheel
AttributeError: module 'tensorflow' has no attribute 'compat' when loading tf.compat.v1.train.SessionRunHook

I can see that this question has been asked before here tensorflow-has-no-attribute-compat but the answer given was to Microsoft Visual …

python tensorflow python-wheel
pip install error: "Unknown archive format: .whl"

I'm new to virtualenv (on windows). I'm trying to use pip (1.5) install a local wheel file, but it is failing. …

python pip virtualenv python-wheel
Why can't `virtualenv` find `pkg_resources`?

I'm trying to use virtualenv in Ubuntu to install a local virtual Python environment. When I run the shell command: $ …

python virtualenv pkg-resources python-wheel