Django 1.9 Compiling Error

前端 未结 4 905
独厮守ぢ
独厮守ぢ 2020-12-20 22:27

I created a virtualenv and downloaded Django with the below commands:

virtualenv tester
source tester/bin/activate
pip install django

and b

4条回答
  •  心在旅途
    2020-12-20 22:33

    Those can't, and shouldn't, be fixed. Those are template files which are substituted at project creation time, and are not valid Python syntax. They shouldn't be compiled at install time but rather at project creation time.

提交回复
热议问题