2017-09-22 8 views
0

J'essaye d'exécuter l'application de base de veille. Il y a un exemple sur cette page: http://eve.readthedocs.io/en/stable/quickstart.html. J'ai créé projet PyCharm et ces deux fichiers py: run.pyPython Eve UnicodeDecodeError

from eve import Eve 
app = Eve() 

if __name__ == '__main__': 
    app.run() 

settings.py

DOMAIN = {'people': {}} 

Et je reçois constamment cette erreur:

Traceback (most recent call last): 
    File "C:/Users/marti_000/BabyProjects/webApp/run.py", line 5, in <module> 
    app.run() 
    File "C:\Users\marti_000\AppData\Local\Programs\Python\Python36- 
32\lib\site-packages\eve\flaskapp.py", line 201, in run 
    super(Eve, self).run(host, port, debug, **options) 
    File "C:\Users\marti_000\AppData\Local\Programs\Python\Python36- 
32\lib\site-packages\flask\app.py", line 841, in run 
    run_simple(host, port, self, **options) 
    File "C:\Users\marti_000\AppData\Local\Programs\Python\Python36- 
32\lib\site-packages\werkzeug\serving.py", line 708, in run_simple 
    inner() 
    File "C:\Users\marti_000\AppData\Local\Programs\Python\Python36- 
32\lib\site-packages\werkzeug\serving.py", line 670, in inner 
    fd=fd) 
    File "C:\Users\marti_000\AppData\Local\Programs\Python\Python36- 
32\lib\site-packages\werkzeug\serving.py", line 564, in make_server 
    passthrough_errors, ssl_context, fd=fd) 
    File "C:\Users\marti_000\AppData\Local\Programs\Python\Python36- 
32\lib\site-packages\werkzeug\serving.py", line 476, in __init__ 
    HTTPServer.__init__(self, (host, int(port)), handler) 
    File "C:\Users\marti_000\AppData\Local\Programs\Python\Python36- 
32\lib\socketserver.py", line 453, in __init__ 
    self.server_bind() 
    File "C:\Users\marti_000\AppData\Local\Programs\Python\Python36- 
32\lib\http\server.py", line 138, in server_bind 
    self.server_name = socket.getfqdn(host) 
    File "C:\Users\marti_000\AppData\Local\Programs\Python\Python36- 
32\lib\socket.py", line 673, in getfqdn 
    hostname, aliases, ipaddrs = gethostbyaddr(name) 
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x9e in position 1: 
invalid start byte 

ps: Je obtenu Python 3.6 32 bits

+0

Que voyez-vous lorsque vous exécutez 'pip list'? –

+0

je reçois ceci ---> https://i.imgur.com/KIWhNQC.png –

Répondre

0

Ligne: nom d'hôte, alias, ipaddrs = gethostbyaddr (nom) lance Un icodeDecodeError car mon nom d'hôte est "Džida". J'ai changé mon nom d'hôte pour le nom sans caractères spéciaux et maintenant tout fonctionne bien. Avez-vous installé `eve` à l'intérieur d'un venv comme recommandé dans les documents d'installation?