Python Fehler

Behebung des AttributeError 'module' object has no attribute 'SSL_ST_INIT' Fehlers in Python

Beim Programmieren in Python kann ein Fehler wie 'AttributeError 'module' object has no attribute 'SSL_ST_INIT'' auftreten. Ich habe nichts Besonderes gemacht... es könnte daran liegen, dass ich pip aktualisiert habe. Der Fehler 'AttributeError: 'module' object has no attribute 'SSL_ST_INIT'' begann plötzlich beim Ausführen von python oder pip zu erscheinen...

Shou Arisaka
3 Min. Lesezeit
30. Okt. 2025

Beim Programmieren in Python kann ein Fehler wie “AttributeError: ‘module’ object has no attribute ‘SSL_ST_INIT’” auftreten.

Ich habe nichts Besonderes gemacht, aber - nun ja, es könnte daran liegen, dass ich pip aktualisiert habe (sudo pip install —upgrade pip) - plötzlich begann der Fehler AttributeError: ‘module’ object has no attribute ‘SSL_ST_INIT’ beim Ausführen von python oder pip zu erscheinen.

Traceback (most recent call last):
  File "/usr/local/bin/pip", line 6, in <module>
    from pip._internal import main
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/__init__.py", line 40, in <module>
    from pip._internal.cli.autocompletion import autocomplete
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/cli/autocompletion.py", line 8, in <module>
    from pip._internal.cli.main_parser import create_main_parser
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/cli/main_parser.py", line 12, in <module>
    from pip._internal.commands import (
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/commands/__init__.py", line 6, in <module>
    from pip._internal.commands.completion import CompletionCommand
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/commands/completion.py", line 6, in <module>
    from pip._internal.cli.base_command import Command
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/cli/base_command.py", line 20, in <module>
    from pip._internal.download import PipSession
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/download.py", line 15, in <module>
    from pip._vendor import requests, six, urllib3
  File "/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/__init__.py", line 97, in <module>
    from pip._vendor.urllib3.contrib import pyopenssl
  File "/usr/local/lib/python2.7/dist-packages/pip/_vendor/urllib3/contrib/pyopenssl.py", line 46, in <module>
    import OpenSSL.SSL
  File "/usr/lib/python2.7/dist-packages/OpenSSL/__init__.py", line 8, in <module>
    from OpenSSL import rand, crypto, SSL
  File "/usr/lib/python2.7/dist-packages/OpenSSL/SSL.py", line 118, in <module>
    SSL_ST_INIT = _lib.SSL_ST_INIT
AttributeError: 'module' object has no attribute 'SSL_ST_INIT'
yuis ASUS /mnt/c/pg$ sudo pip install pyOpenSSL -U
Traceback (most recent call last):
  File "/usr/local/bin/pip", line 6, in <module>
    from pip._internal import main
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/__init__.py", line 40, in <module>
    from pip._internal.cli.autocompletion import autocomplete
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/cli/autocompletion.py", line 8, in <module>
    from pip._internal.cli.main_parser import create_main_parser
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/cli/main_parser.py", line 12, in <module>
    from pip._internal.commands import (
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/commands/__init__.py", line 6, in <module>
    from pip._internal.commands.completion import CompletionCommand
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/commands/completion.py", line 6, in <module>
    from pip._internal.cli.base_command import Command
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/cli/base_command.py", line 20, in <module>
    from pip._internal.download import PipSession
  File "/usr/local/lib/python2.7/dist-packages/pip/_internal/download.py", line 15, in <module>
    from pip._vendor import requests, six, urllib3
  File "/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/__init__.py", line 97, in <module>
    from pip._vendor.urllib3.contrib import pyopenssl
  File "/usr/local/lib/python2.7/dist-packages/pip/_vendor/urllib3/contrib/pyopenssl.py", line 46, in <module>
    import OpenSSL.SSL
  File "/usr/lib/python2.7/dist-packages/OpenSSL/__init__.py", line 8, in <module>
    from OpenSSL import rand, crypto, SSL
  File "/usr/lib/python2.7/dist-packages/OpenSSL/SSL.py", line 118, in <module>
    SSL_ST_INIT = _lib.SSL_ST_INIT
AttributeError: 'module' object has no attribute 'SSL_ST_INIT'

Nachdem ich versucht habe, Code auszuführen, der es lösen könnte, verschwand der Fehler mit der folgenden Methode.

sudo rm -r /usr/lib/python2.7/dist-packages/OpenSSL/
sudo pip install pyopenssl

openssl - Python AttributeError: ‘module’ object has no attribute ‘SSL_ST_INIT’ - Stack Overflow

Ich habe auch zuerst die folgenden zwei Methoden ausprobiert, aber sie haben den Fehler nicht gelöst.

sudo apt-get --auto-remove --yes remove python-openssl
sudo pip install pyOpenSSL

python - Error with pip after upgrading : ‘module’ object has no attribute ‘SSL_ST_INIT’ - Stack Overflow

sudo pip install pyOpenSSL -U

python - AttributeError: ‘module’ object has no attribute ‘SSL_ST_INIT’ - Stack Overflow

Diesen Artikel teilen

Shou Arisaka 30. Okt. 2025

🔗 Links kopieren