我正在尝试为 Django 安装美味派。我也安装了南。但是当我迁移时,我遇到了一些奇怪的类型错误。
./manage.py migrate tastypie
Running migrations for tastypie:
- Migrating forwards to 0002_add_apikey_index.
> tastypie:0001_initial
TypeError: type() argument 1 must be string, not unicode
我查看了迁移 0002,甚至没有调用类型!
最佳答案
这是最新版本 ( 0.10.0
) 中的一个错误。已提交错误报告。 https://github.com/toastdriven/django-tastypie/issues/1005。
您可以通过安装以前的版本来修复它:pip install django-tastypie==0.9.16
关于python - Tastypie 迁移错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18162723/