Django: What is `sys.path` supposed to be?

2019-06-28 08:29发布

When developing a Django application, what is sys.path supposed to contain? The directory which contains the project, or the directory of the project, or both?

2条回答
地球回转人心会变
2楼-- · 2019-06-28 08:55

As far as I know, it's just a matter of personal taste. I go with the directory which contains the project, but that's just my preference.

查看更多
唯我独甜
3楼-- · 2019-06-28 09:15

sys.path should and will have the directory of the project. Depending on what your setup is, it may also contain the directory which contains the project.

However, if the motivation behind this question is to ensure that certain files can be found, then you should note that sys.path is just like a normal list and can be appended to. Therefore, you can add a new location to sys.path like so:

sys.path.append('/home/USER/some/directory/')

where your files can be found.

Hope this helps

查看更多
登录 后发表回答