我想使用 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
django.template.loaders.eggs.Loader
中的 .egg
资源加载器使用 pkg_resources
来自 setuptools 的模块包如果可用。如果 pkg_resources
在您的系统上不可用,您将得到此异常。
setuptools 是独立于 Python 解释器的安装。
您应该按照 this link 中的说明安装 setuptools。 .
我是一名优秀的程序员,十分优秀!