4

我想使用 django / djanxice 并在 setup.py、url.py 等中进行了设置...

但是当我运行服务器时,会发生错误。

/Library/Python/2.7/site-packages/django/template/loader.py:113: UserWarning: Your TEMPLATE_LOADERS setting includes 'django.template.loaders.eggs.Loader', but your Python installation doesn't support that type of template loading. Consider removing that line from TEMPLATE_LOADERS.
  warnings.warn("Your TEMPLATE_LOADERS setting includes %r, but your Python installation doesn't support that type of template loading. Consider removing that line from TEMPLATE_LOADERS." % loader)
No handlers could be found for logger "dajaxice"

我用谷歌搜索,但找不到这样的错误。

任何人都可以帮助为什么 python 安装不支持这个 Templat_Loaders?

我的 python 版本是 2.7.3,使用 OS X v10.8

4

1 回答 1

2

.egg资源加载器django.template.loaders.eggs.Loader使用setuptools包中的pkg_resources模块(如果可用)。如果在您的系统上不可用,您将收到此异常。pkg_resources

setuptools 是独立于 Python 解释器的安装。

您应该按照此链接上的说明安装 setuptools 。

于 2013-01-29T01:51:48.610 回答