gpt4 book ai didi

python - django外部应用程序安装 "Error: No module named nested-inlines"

转载 作者:行者123 更新时间:2023-12-01 05:36:41 25 4
gpt4 key购买 nike

我刚刚开始使用 django 尝试使用 external app 。我已下载并安装了该应用程序:

sudo setup.py install
...
Adding django-nested-inlines 0.1 to easy-install.pth file

Installed /Applications/djangostack-1.4.7-0/python/lib/python2.7/site-packages/django_nested_inlines-0.1-py2.7.egg

我还按照应用程序教程并将应用程序包含在设置文件中:

INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
#'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
# Uncomment the next line to enable the admin:
'nested_inlines',
'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
'polls',
)

但是当我尝试再次运行服务器时,我得到:

bash-3.2$ python manage.py runserver
Error: No module named nested-inlines

这里出了什么问题?

编辑:

我没有使用 pip 安装而是下载了它。 django 使用 Bitnami 安装在 Mac 操作系统下。

最佳答案

这是一个猜测,但该应用程序可能在您的 PYTHONPATH 上不可用。您可能需要告诉 Django 在那里查找您想要使用的应用程序。像下面这样的东西可能会起作用,以便您的 settings.py 可以为您的 django 项目导入应用程序。

设置.py

import sys
sys.path.append("/Applications/djangostack-1.4.7-0/python/lib/python2.7/site-packages/")

## After which you can include it in your installed apps:

INSTALLED_APPS = (
'nested_inlines',
'other apps',
'etc',
)

关于python - django外部应用程序安装 "Error: No module named nested-inlines",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18817361/

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