Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

make pip ignore an existing wheel

Tags:

People also ask

What does -- ignore installed do?

In combination with the --dry-run and --ignore-installed it can be used to resolve a set of requirements without actually installing them.

Should I pip install wheel?

It's not required, but it's recommended. Pip will work just fine without wheels, but you'll be installing from source ( tar. gz , . zip or .


If a .whl is available online, pip always installs it rather than compiling from source. However, for some specific module, the wheel happened to be compiled for the next processor generation and doesn't run on a specific machine.

If I command it to just download the package, then it still downloads the wheel rather than source. Does pip have some mechanism to override this preference?