我想在我的博客中安装外部应用程序django disqus。然而,我不想通过pipinstall或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 = (
...
'libs.disqus',
)