0

I try to install pontoon. I use the doc here but when I make:

python manage.py migrate 

I have this error:

File "manage.py", line 22, in <module>
    execute_from_command_line(sys.argv)
ImportError: No module named session_csrf

I have no idea. Can someone help me?

Ivan Vinogradov
  • 3,611
  • 6
  • 27
  • 29
charles Lgn
  • 450
  • 2
  • 7
  • 25

1 Answers1

1

session_csrf is a module from the Django framework (see : Django documentation), it seems then Pontoon are using Django. Your manage.py file can't found the module session_csrf. try to install it with :

pip install django-session-csrf
Rekoc
  • 380
  • 5
  • 15