0

我是 Web 应用程序开发的新手。启动我的应用程序后,我遇到了 django 问题。我收到以下错误:

ExtractionError at /
Can't extract file(s) to egg cache

The following error occurred while trying to extract file(s) to the Python egg
cache:

  [Errno 13] Permission denied: '/usr/local/pylons'

The Python egg cache directory is currently set to:

  /usr/local/pylons/python-eggs

在遵循其他一些答案后,我补充说:

os.environ['PYTHON_EGG_CACHE'] = '/usr/local/pylons/python-eggs'

到我的网站 wsgi 文件。还是一样的错误。我是 apache 新手,我不知道如何“授予 apache 用户权限”。我该怎么做?我在 OSX 山狮上。

4

1 回答 1

1

看起来 apache 正在为不同的网站提供服务。尝试通过使用python manage.py runserver然后将浏览器指向 来启动 django 开发服务器localhost:8000,这是您的 django 站点应该在开发服务器上的位置。

于 2013-01-29T20:52:47.720 回答