Syntax error Django fichier de base

Résolu/Fermé
puxor Messages postés 318 Date d'inscription mardi 2 septembre 2008 Statut Membre Dernière intervention 4 mai 2009 - 2 mars 2009 à 13:22
puxor Messages postés 318 Date d'inscription mardi 2 septembre 2008 Statut Membre Dernière intervention 4 mai 2009 - 2 mars 2009 à 14:19
Bonjour,
Je suis entrain d'installer Django (j'ai au préalable installé Python).
J'arrive a importer Django depuis l'interpreteur Python (il est donc installé correctement) et j'ai modifier le Path.

Cependant, au moment ou je veux créer un nouveau projet avec la commande:

django-admin.py startproject nom_du_projet, l'intérpreteur me signale une erreur de syntaxe dans le fichier __init__.py.

C'est pourtant le fichier de base que je n'ai pas toucher.
C:\Python30\projet>django-admin.py startproject monsite
Traceback (most recent call last):
  File "C:\Python30\Lib\site-packages\django\bin\django-admin.py", line 2, in <m
odule>
    from django.core import management
  File "C:\Python30\lib\site-packages\django\core\management\__init__.py", line
51
    except ImportError,e:
                      ^
SyntaxError: invalid syntax


Si quelqu'un sais d'où ça peut venir... je me prend la tête la dessus depuis 2h.

Ps: je tourne sous Windows, mais je ne pense pas que c'est ça qui fait foirer le tout...

Merci
A voir également:

1 réponse

puxor Messages postés 318 Date d'inscription mardi 2 septembre 2008 Statut Membre Dernière intervention 4 mai 2009 89
2 mars 2009 à 14:19
Problème résolu: Django pas compatible avec la version 3.

A utiliser avec la version 2.6
0