django-cmsを見てみることにしました。ドキュメントを見た後、私はを使用してリポジトリのクローンを作成しました
git clone https://github.com/divio/django-cms.git
次に、を使用してインストールしました
sudo python setup.py install
すでにdjango1.2.3をインストールしています。次のテーブルを作成するexample
ディレクトリに移動しました。syncdb
Creating table auth_permission
Creating table auth_group_permissions
Creating table auth_group
Creating table auth_user_user_permissions
Creating table auth_user_groups
Creating table auth_user
Creating table auth_message
Creating table django_content_type
Creating table django_session
Creating table django_admin_log
Creating table django_site
Creating table sampleapp_category
Creating table sampleapp_picture
Creating table south_migrationhistory
You just installed Django's auth system, which means you don't have any superusers defined.
Would you like to create one now? (yes/no): yes...
cmsテーブルが作成されていないことがはっきりとわかります。サーバーを実行してブラウジングするときに、明らかにその問題に直面していますhttp://localhost:8000/
DatabaseError: no such table: cms_page
ドキュメントを見て、バージョンに関する要件を満たしていることを確認しましたが、明らかに、何か間違ったことをしています。どんな助けでも大歓迎です。