2017-05-15 3 views
0

Ich habe eine Bilddatei, die ich mit Stegano Modul dekodieren muss. Ich habe alles versucht, aber immer Syntaxfehler bekommen.Entschlüsseln eines Bildes mit Stegano Modul

Fehler:

[email protected]:~/Downloads/Stegano-master# stegano-lsb reveal -i predat0r.png 
Install Stegano: sudo pip install Stegano 
Traceback (most recent call last): 
    File "/usr/local/bin/stegano-lsb", line 32, in <module> 
    from stegano import tools 
    File "/usr/local/lib/python2.7/dist-packages/stegano/__init__.py", line 4, in <module> 
    from . import red 
    File "/usr/local/lib/python2.7/dist-packages/stegano/red/__init__.py", line 4, in <module> 
    from .red import* 
    File "/usr/local/lib/python2.7/dist-packages/stegano/red/red.py", line 33 
    def hide(input_image: Union[str, I0[bytes]], message: str): 

SyntaxError: invalid syntax 

http://imgur.com/a/4Rr1i das ist das Bild, das ich entschlüsseln müssen.

Was soll ich jetzt tun? Kann mir jemand beim Entschlüsseln helfen?

Antwort

0

Bitte verwenden Python 3:

sudo apt-get install python3-pip 

sudo pip3 install stegano 

und dann unter python3 laufen.