Django Installed Apps Location

前端 未结 3 2128
野性不改
野性不改 2020-12-31 04:04

I am an experienced PHP programmer using Django for the first time, and I think it is incredible!

I have a project that has a lot of apps, so I wanted to group them

3条回答
  •  萌比男神i
    2020-12-31 04:43

    As long as your apps are in your PYTHONPATH, everything should work. Try setting that environment variable to the folder containing your apps.

    PYTHONPATH="/path/to/your/apps/dir/:$PYTHONPATH"
    

提交回复
热议问题