HosokiTakashi / Python-Django

0 stars 0 forks source link

データベースにモデルのためのテーブルを作成する #10

Closed technicakidz closed 3 years ago

technicakidz commented 3 years ago

概要

アプリケーションで作成したポストモデルがデータベースに未追加のためマイグレーションが必要。

参考

https://tutorial.djangogirls.org/ja/django_models/#%E3%83%87%E3%83%BC%E3%82%BF%E3%83%99%E3%83%BC%E3%82%B9%E3%81%AB%E3%83%A2%E3%83%87%E3%83%AB%E3%81%AE%E3%81%9F%E3%82%81%E3%81%AE%E3%83%86%E3%83%BC%E3%83%96%E3%83%AB%E3%82%92%E4%BD%9C%E6%88%90%E3%81%99%E3%82%8B

HosokiTakashi commented 3 years ago
ImportError: Couldn't import Django. Are you sure it's installed and available on your PYTHONPATH environment variable? Did you forget to activate a virtual environment?

⇨仮想環境立ち上げ忘れ、立ち上げて解決

NameError: name 'os' is not defined ⇨setting.pyにimport osを追記することで解決

No installed app with label 'blog'. ⇨setting.pyに'blog.apps.BlogConfig',を追記し解決

TypeError: argument of type 'PosixPath' is not iterable ⇨setting.pyにstr()を追記し解決