47
votes

I'm really new in programming and I wanted to follow the Djangogirls tutorial, but I'm stucked now. In the tutorial, I am here:

To create a database for our blog, let's run the following in the console: python manage.py migrate (we need to be in the djangogirls directory that contains the manage.py file). If that goes well, you should see something like this: ...

There is no option to fail in the tutorial but I have an error message:

(myvenv) C:\Users\Julcsi\djangogirls> python manage.py migrate
Traceback (most recent call last):
File "manage.py", line 22, in <module>
execute_from_command_line(sys.argv)
File "C:\Users\Julcsi\djangogirls\myvenv\lib\site-packages\django\core\management\__init__.py", 
line 364, in execute_from_command_line
utility.execute()
File "C:\Users\Julcsi\djangogirls\myvenv\lib\site-packages\django\core\management\__init__.py", 
line 338, in execute
django.setup()
File "C:\Users\Julcsi\djangogirls\myvenv\lib\site-packages\django\__init__.py", 
line 27, in setup
apps.populate(settings.INSTALLED_APPS)
File "C:\Users\Julcsi\djangogirls\myvenv\lib\site-packages\django\apps\registry.py", 
line 85, in populate
app_config = AppConfig.create(entry)
File "C:\Users\Julcsi\djangogirls\myvenv\lib\site-packages\django\apps\config.py", 
line 94, in create
module = import_module(entry)
File "C:\Users\Julcsi\AppData\Local\Programs\Python\Python37\lib\importlib\__init__.py", 
line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 994, in _gcd_import
File "<frozen importlib._bootstrap>", line 971, in _find_and_load
File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 723, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_remove
File "C:\Users\Julcsi\djangogirls\myvenv\lib\site-packages\django\contrib\admin\__init__.py", 
line 4, in <module>
from django.contrib.admin.filters import (
File "C:\Users\Julcsi\djangogirls\myvenv\lib\site-packages\django\contrib\admin\filters.py", 
line 10, in <module>
from django.contrib.admin.options import IncorrectLookupParameters
File "C:\Users\Julcsi\djangogirls\myvenv\lib\site-packages\django\contrib\admin\options.py", 
line 12, in <module>
from django.contrib.admin import helpers, widgets
File "C:\Users\Julcsi\djangogirls\myvenv\lib\site-packages\django\contrib\admin\widgets.py", 
line 152
'%s=%s' % (k, v) for k, v in params.items(),
SyntaxError: Generator expression must be parenthesized

What am I doing wrong? What should I do?

I have Python 3.7.0b1

Thanks a lot in advance for the help :)

9
You really shouldn't be using an unreleased version of Python. Stick to 3.6.Daniel Roseman
Thank you for your reply! :) Unfortunately, after I uninstalled Python 3.7.0b1, when I try to "ask" in the command line wich version is active, it's still the 3.7. :(julo6
I just got the same exact error with Python 3.6Rich Bianco
Python 3.7 is releasedTrect

9 Answers

71
votes

You’re not doing anything wrong; this is a problem between Django and Python 3.7. Django has a fix, but that fix hasn’t made it into a new version yet.

You can install the stable version of Python, Python 3.6, in the meantime.

14
votes

This is a known incompatibility between Django and Python 3.7. A fix has already been merged into Django 2.x branches and backported into 1.11 branch.

To solve this issue, simply update Django to at least version 1.11.17 (or 2.x) or you can downgrade Python to version 3.6.

12
votes

Also, upgrading Django solved my problem

On your terminal,

$ pip install -U Django

or see here

3
votes

Only Django==2.2 will be supported to Python 3.7 so upgrading your Django Version will solve your problem

pip3 install django --upgrade
2
votes

The Django Girls tutorial version in English has just switched to Django 2.0 which should make it compatible to Python 3.7. (Django 2.0 includes a backport of the fix mentioned in Ry-'s answer.)

So everyone beginning the tutorial now should be fine with Python 3.7.

If you've already begun the tutorial you'd have to start again at the Django installation chapter. You'll want to do that in a new directory (either delete or rename your current djangogirls directory or choose a different name for the new directory) as the files generated by

django-admin print startproject mysite .

depend on the Django version in use.

1
votes

Per Django's FAQ, Django 1.11.x is not compatible with Python 3.7.

Django 1.11.x reached end of mainstream support on December 2, 2017 and it receives only data loss and security fixes until its end of life.

0
votes

As all of the above answers already suggesting that there's a miss match between Django and Python version.
While creating a virtual environment, please run the following command

python3.6 -m venv myenv

It will use Python3.6 while creating your virtual environment.
Now you can install all the dependencies in this virtual environment.

0
votes

I got this issue solved by upgrading Django to Dajngo==1.11.29, the last release of Dajngo 1.11. I think my python version was 3.8.x. Give it a try if you are not planning to upgrade to Django 2.x or 3.x

-1
votes

Follow the below-mentioned steps to fix the issue:

  • Move to the directory where you have installed the virtualenv
  • You will find a directory named lib. Inside that directory, you will find a directory named pythonx.y where x.y is the version of python you are using
  • Now, go to site-packages
  • Then go to the directory django
  • Move to contrib directory
  • Now, go to admin directory. This is where you would find a python file widgets.py
  • Find the following code snippet in that file
            if params:
                related_url += '?' + '&amp;'.join(
                related_url += '?' + '&amp;'.join('%s=%s' % (k, v) for k, v in params.items())
                    '%s=%s' % (k, v) for k, v in params.items(),
                )

You need to change that to the following

            if params:
                related_url += '?' + '&amp;'.join(
                related_url += '?' + '&amp;'.join('%s=%s' % (k, v) for k, v in params.items())

Save the changes and execute the migrate again.