-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Description
Hello,
I'm encountering a ModuleNotFoundError: No module named 'urllib3.packages.six.moves' error when trying to run PhoneInfoga in Termux on Android. I've tried various solutions but haven't been able to resolve the issue.
Steps to reproduce:
- Cloned the PhoneInfoga repository: git clone <repository_url>
- Navigated to the PhoneInfoga directory: cd PhoneInfoga
- Attempted to run PhoneInfoga: python phoneinfoga.py -n +79512139156 (or any other command to run the tool)
Error message (Traceback):
Python version:python --version
Python <your_python_version>
pip list output:<Copy and paste the entire output of 'pip list' here>
Environment Information:
• Operating System: Termux on Android
• PhoneInfoga version: (If you know the version, add it here, otherwise state "latest from git")
Steps I've tried so far:
• Reinstalling urllib3: pip uninstall urllib3, then pip install urllib3
• Installing six: pip install six
• Forced reinstall of six: pip install --force-reinstall six
• Tried different versions of six and urllib3: (Mention specific versions you tried and commands you used)
• Upgrading and reinstalling requests: pip install --upgrade requests and pip install --force-reinstall requests
• Verified the absence of dependency conflicts between requests and urllib3
• Created a virtual environment with venv
Despite these steps, the issue persists. Any help in resolving this would be greatly appreciated.
Thank you.