-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GHA/linux: fix
pip3 install impacket
breakage
An upstream update `impacket` pip package started requiring `blinker`. An older version is shipping with Ubuntu, causing this on install: ``` Attempting uninstall: blinker Found existing installation: blinker 1.7.0 ERROR: Cannot uninstall blinker 1.7.0, RECORD file not found. Hint: The package was installed by debian. ``` Fix it by switching to venv and install everything separate from the system. The overhead is the same as using `pip --ignore-installed`, which also installs everything from scratch. The 3rd option is to uninstall the system `python3-blinker` package, but it was the slowest. Closes curl#15578
- Loading branch information
Showing
2 changed files
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters