5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Django migrate時のエラー対応 'DIRS': [BASE_DIR / 'templates']

Posted at

(Django学習のメモ)

djangoでdbのmigrateするときにエラーが発生しのので、その修正メモ。

/を文字列として含めてBASE_DIRと'templates'を'+'演算子で結合する。

ターミナル(エラー内容)
$ python manage.py migrate
 ・・・・
 ・・・・
  File "/Users/USERNAME/mybook/mybook/settings.py", line 57, in <module>
    'DIRS': [BASE_DIR / 'templates']
TypeError: unsupported operand type(s) for /: 'str' and 'str'
settings.py(修正前)
    'DIRS': [BASE_DIR / 'templates']
settings.py(修正後)
    'DIRS': [BASE_DIR + '/templates']

動いたけど、pythonのバージョンとDjangoのバージョンの問題かな。

## 参考URL

Django DIRS issue(stackoverflow)
Python Django入門 (3)

5
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?