Expand description
Takes a wheel and installs it into a venv.
Structs§
- Install
State - Shared state for concurrent wheel installations.
- Layout
- The layout of the target environment into which a wheel can be installed.
- Record
Entry - Line in a RECORD file https://www.python.org/dev/peps/pep-0376/#record
- Uninstall
- Wheel
File - A parsed
WHEELfile.
Enums§
- Error
- Note: The caller is responsible for adding the path of the wheel we’re installing.
- Link
Mode - The method to use when linking.
Functions§
- install_
wheel - Install the given wheel to the given venv
- installed_
dist_ info_ path - Return the path at which the wheel’s
.dist-infodirectory will be installed. - read_
record - read_
record_ into_ iter - Reads the record file https://www.python.org/dev/peps/pep-0376/#record
- uninstall_
egg - Uninstall the egg represented by the
.egg-infodirectory. - uninstall_
legacy_ editable - Uninstall the legacy editable represented by the
.egg-linkfile. - uninstall_
wheel - Uninstall the wheel represented by the given
.dist-infodirectory. - validate_
and_ heal_ record - Validate the RECORD and heal invalid RECORD files.