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

2019-06-28 08:40发布

问题:

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?

回答1:

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



回答2:

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.