Skip to content

Instantly share code, notes, and snippets.

@felipealfonsog
Created January 13, 2026 12:25
Show Gist options
  • Select an option

  • Save felipealfonsog/d5a71d3b54c785b5634c0ec059b23d3e to your computer and use it in GitHub Desktop.

Select an option

Save felipealfonsog/d5a71d3b54c785b5634c0ec059b23d3e to your computer and use it in GitHub Desktop.
Fix Python + Blackarch utils deployment and installation
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