Created
January 13, 2026 12:25
-
-
Save felipealfonsog/d5a71d3b54c785b5634c0ec059b23d3e to your computer and use it in GitHub Desktop.
Fix Python + Blackarch utils deployment and installation
This file contains hidden or 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
| sudo tee /usr/local/bin/fix-osint-python >/dev/null <<'EOF' | |
| #!/usr/bin/env bash | |
| sudo cp -an /usr/lib/python3.13/site-packages/* /usr/lib/python3.14/site-packages/ 2>/dev/null || true | |
| echo "[OK] Synced python3.13 site-packages -> python3.14" | |
| EOF | |
| sudo chmod +x /usr/local/bin/fix-osint-python | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment