作者:Life一切安好 | 2023-09-09 11:33
如何解决《django上的Sphinx-apidoc在`django.core.exceptions.AppRegistryNotReady上构建html失败》经验,为你挑选了1个好方法。
如何解决《django上的Sphinx-apidoc在`django.core.exceptions.AppRegistryNotReady上构建html失败》经验,为你挑选了1个好方法。
1> Alfred Huang..:
很长时间才找到解决方案:
在conf.py
,添加以下内容:
import django
sys.path.insert(0, os.path.abspath('..'))
os.environ['DJANGO_SETTINGS_MODULE'] = 'myproject.settings'
django.setup()