Django 1.4.5にアップグレードし、MySQL 5.5.8
データベースを削除して再作成したため、このエラーメッセージが表示されます。./manage syncdb
Superuser created successfully.
Installing custom SQL ...
Installing indexes ...
Failed to install index for my_app.WorldBorder model:
(1464, "The used table type doesn't support SPATIAL indexes")
設定:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.admin',
'django.contrib.gis', <---- here
'pipeline',
'widget_tweaks',
'my_app',
'south',
'modeltranslation',
'djcelery',
)
しかし、私はすでにGeosをダウンロードしてコンパイルしており、これまでのところ常に機能していました。
wget http://download.osgeo.org/geos/geos-3.3.0.tar.bz2
tar xjf geos-3.3.0.tar.bz2
auto-apt run ./configure
make -j4
sudo checkinstall
sudo ldconfig
私は何かが足りないのですか?