You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
┌──(venv)─(kali㉿kali)-[~/Desktop/Osintgram]
└─$ python3 main.py evana1208
Traceback (most recent call last):
File "/home/kali/Desktop/Osintgram/main.py", line 3, in
from src.Osintgram import Osintgram
File "/home/kali/Desktop/Osintgram/src/Osintgram.py", line 9, in
import requests
File "/home/kali/Desktop/Osintgram/venv/lib/python3.12/site-packages/requests/init.py", line 43, in
import urllib3
File "/home/kali/Desktop/Osintgram/venv/lib/python3.12/site-packages/urllib3/init.py", line 7, in
from .connectionpool import HTTPConnectionPool, HTTPSConnectionPool, connection_from_url
File "/home/kali/Desktop/Osintgram/venv/lib/python3.12/site-packages/urllib3/connectionpool.py", line 11, in
from .exceptions import (
File "/home/kali/Desktop/Osintgram/venv/lib/python3.12/site-packages/urllib3/exceptions.py", line 2, in
from .packages.six.moves.http_client import IncompleteRead as httplib_IncompleteRead
ModuleNotFoundError: No module named 'urllib3.packages.six.moves'
The text was updated successfully, but these errors were encountered:
try pip install urllib3 --upgrade it worked for me
got the same error message as OP.
tried pip install urlib3 --upgrade and got the following:
└─$ pip install urllib3 --upgrade
Requirement already satisfied: urllib3 in ./venv/lib/python3.12/site-packages (1.25.11)
Collecting urllib3
Using cached urllib3-2.3.0-py3-none-any.whl.metadata (6.5 kB)
Using cached urllib3-2.3.0-py3-none-any.whl (128 kB)
Installing collected packages: urllib3
Attempting uninstall: urllib3
Found existing installation: urllib3 1.25.11
Uninstalling urllib3-1.25.11:
Successfully uninstalled urllib3-1.25.11
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
requests 2.24.0 requires urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1, but you have urllib3 2.3.0 which is incompatible.
Successfully installed urllib3-2.3.0
┌──(venv)─(kali㉿kali)-[~/Desktop/Osintgram]
└─$ python3 main.py evana1208
Traceback (most recent call last):
File "/home/kali/Desktop/Osintgram/main.py", line 3, in
from src.Osintgram import Osintgram
File "/home/kali/Desktop/Osintgram/src/Osintgram.py", line 9, in
import requests
File "/home/kali/Desktop/Osintgram/venv/lib/python3.12/site-packages/requests/init.py", line 43, in
import urllib3
File "/home/kali/Desktop/Osintgram/venv/lib/python3.12/site-packages/urllib3/init.py", line 7, in
from .connectionpool import HTTPConnectionPool, HTTPSConnectionPool, connection_from_url
File "/home/kali/Desktop/Osintgram/venv/lib/python3.12/site-packages/urllib3/connectionpool.py", line 11, in
from .exceptions import (
File "/home/kali/Desktop/Osintgram/venv/lib/python3.12/site-packages/urllib3/exceptions.py", line 2, in
from .packages.six.moves.http_client import IncompleteRead as httplib_IncompleteRead
ModuleNotFoundError: No module named 'urllib3.packages.six.moves'
The text was updated successfully, but these errors were encountered: