gpt4 book ai didi

python - 在 django 中集成一个外部应用程序,从任何文件夹中获取代码

转载 作者:太空宇宙 更新时间:2023-11-04 05:39:53 24 4
gpt4 key购买 nike

我想安装外部应用 django-disqus在我的博客中。但是,我不想通过 pip install 或 python setup.py install 在系统中安装模块,而是想将代码下载到名为 libs 的特定文件夹,然后将其链接到我的项目。

我的文件夹结构是这样的:

-root_folder
-- project (here I have settings.py, urls.py and wsgi.py)
-- blog (here I have models.py, admin.py, urls.py, templatetags/, template/)
-- libs (here I want to add the code of disqus)

如果我下载了 libs 中的代码,如何将它链接到 setting.py 中的 INSTALLED_APPS?

注意:我运行的是django 1.8

最佳答案

您应该能够像注册任何 Django 应用程序一样注册它。

通过添加__init__.py文件使libs成为一个包

然后将其添加到您的设置中。INSTALLED_APPS


INSTALLED_APPS = (
...
'libs.disqus',
)

关于python - 在 django 中集成一个外部应用程序,从任何文件夹中获取代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34291184/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com