pub fn install_wheel(
    location: &InstallLocation<LockedDir>,
    reader: impl Read + Seek,
    filename: WheelFilename,
    compile: bool,
    _extras: &[String],
    unique_version: &str,
    sys_executable: &Path
) -> Result<String, Error>
Expand description

Install the given wheel to the given venv

The caller must ensure that the wheel is compatible to the environment.

https://packaging.python.org/en/latest/specifications/binary-distribution-format/#installing-a-wheel-distribution-1-0-py32-none-any-whl

Wheel 1.0: https://www.python.org/dev/peps/pep-0427/