Django版本逆转怎么办?

2024-05-12 13:12:54 发布

您现在位置:Python中文网/ 问答频道 /正文

我试图打开django cms一个项目,我没有工作了一段时间,当我

  python mange.py runserver

我有个错误:

^{pr2}$

这是我的

pip freeze 


    BeautifulSoup==3.2.1
    Django==1.4.1
    PIL==1.1.7
    PyYAML==3.10
    South==0.7.5
    Werkzeug==0.8.3
    cmsplugin-filer==0.8.0
    cmsplugin-zinnia==0.2
    django-blog-zinnia==0.11.2
    django-classy-tags==0.3.4.1 
    django-cms==2.3
    django-cms-search==0.6.1
    django-debug-toolbar==0.9.4
    django-extensions==0.9
    -e git+https://github.com/stefanfoulis/django-filer.git@ac71bcdc47ac83ddf2ea3cf0e9ff1e1e9f3df1b2#egg=django_filer-dev
    django-form-utils==0.2.0 
    django-haystack==1.2.7
    django-mptt==0.5.2
    -e git+https://github.com/cypreess/django-ordered-model.git@ce6a6b9292d20b30e6b0e76ba84bb29975451d6b#egg=django_ordered_model-dev
    django-polymorphic==0.2
    django-reversion==1.6.1
    django-sekizai==0.6.1
    django-tagging==0.3.1
    django-taggit==0.9.3 
    django-uni-form==0.9.0
    django-xmlrpc==0.1.4
    easy-thumbnails==1.0.3
    html5lib==0.95
    psycopg2==2.4.5
    pyparsing==1.5.6
    pysolr==2.1.0-beta
    pytz==2012d
    wsgiref==0.1.2

我正在使用一个virtualenv和virtualwrapper。在

更新

我安装了版本,现在正在验证模型,但打开页面时出现以下错误:

   OperationalError at /
   could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/var/pgsql_socket/.s.PGSQL.5432"?

Tags: djangohttpsdevgitformgithubcommodel
1条回答
网友
1楼 · 发布于 2024-05-12 13:12:54

你的选择,从最好到最少:

  1. pip install django reversion==1.6.3
  2. 安装=Django
  3. 检查是否一切正常,忽略警告,因为它不是错误。在

如果选择升级版本,则可能需要执行./manage.py migrate reversion。在

相关问题 更多 >