Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/309.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 无法创建zope项目_Python_Ubuntu 10.04_Egg_Zope3 - Fatal编程技术网

Python 无法创建zope项目

Python 无法创建zope项目,python,ubuntu-10.04,egg,zope3,Python,Ubuntu 10.04,Egg,Zope3,我是zope/python新手,高级Java程序员,由于缺乏经验,我在启动时遇到了一些问题 我正在使用Ubuntu10.4,我已经为python配置了Virtualenv。我切换到virtualenv,安装了setuptools软件包,并在终端发布了以下内容: (zope3)makcro@makcro-laptop:~/tmp/zope_playground$ zopeproject helloworld 并得出以下结果: Enter user (Name of an initial admi

我是zope/python新手,高级Java程序员,由于缺乏经验,我在启动时遇到了一些问题

我正在使用Ubuntu10.4,我已经为python配置了Virtualenv。我切换到virtualenv,安装了setuptools软件包,并在终端发布了以下内容:

(zope3)makcro@makcro-laptop:~/tmp/zope_playground$ zopeproject helloworld
并得出以下结果:

Enter user (Name of an initial administrator user): admin
Enter passwd (Password for the initial administrator user): admin
Enter eggs_dir (Location where zc.buildout will look for and place packages) ['/home/makcro/.buildout/eggs']: eggs
Creating directory ./helloworld
Downloading zc.buildout...
Invoking zc.buildout...
While:
  Installing.
  Getting section app.
  Initializing section app.
  Installing recipe zc.recipe.egg.
Error: There is a version conflict.
We already have: setuptools 0.6c11
为了获得更详细的结果,我尝试了:

(zope3)makcro@makcro-laptop:~/tmp/zope_playground$ zopeproject helloworld --verbose
它返回:

Selected and implied templates:
  zopeproject#zope_deploy  (Paste) deployment of a Zope application
  zopeproject#zope_app     Package that contains a Zope application

Variables:
  egg:      helloworld
  newest:   false
  package:  helloworld
  project:  helloworld
Enter user (Name of an initial administrator user): admin
Enter passwd (Password for the initial administrator user): admin
Enter eggs_dir (Location where zc.buildout will look for and place packages) ['/home/makcro/.buildout/eggs']: eggs
Creating template zope_deploy
Creating directory ./helloworld
  Copying apidoc.zcml to ./helloworld/apidoc.zcml
  Copying buildout.cfg_tmpl to ./helloworld/buildout.cfg
  Copying debug.ini_tmpl to ./helloworld/debug.ini
  Copying deploy.ini_tmpl to ./helloworld/deploy.ini
  Recursing into log
    Creating ./helloworld/log/
    Copying README.txt to ./helloworld/log/README.txt
  Copying site.zcml_tmpl to ./helloworld/site.zcml
  Recursing into var
    Creating ./helloworld/var/
    Copying README.txt to ./helloworld/var/README.txt
  Copying zdaemon.conf to ./helloworld/zdaemon.conf
  Copying zope.conf to ./helloworld/zope.conf
Creating template zope_app
  Copying setup.py_tmpl to ./helloworld/setup.py
  Recursing into src
    Creating ./helloworld/src/
    Recursing into +package+
      Creating ./helloworld/src/helloworld/
      Copying __init__.py to ./helloworld/src/helloworld/__init__.py
      Copying configure.zcml_tmpl to ./helloworld/src/helloworld/configure.zcml
      Copying ftesting.zcml_tmpl to ./helloworld/src/helloworld/ftesting.zcml
      Copying startup.py to ./helloworld/src/helloworld/startup.py
      Copying testing.py to ./helloworld/src/helloworld/testing.py
Running /home/makcro/devel/virt_env/zope3/bin/python setup.py egg_info
Downloading zc.buildout...
Searching for zc.buildout
Reading http://pypi.python.org/simple/zc.buildout/
Reading http://buildout.org
Best match: zc.buildout 1.5.2
Downloading http://pypi.python.org/packages/source/z/zc.buildout/zc.buildout-1.5.2.tar.gz#md5=87f7b3f8d13926c806242fd5f6fe36f7
Processing zc.buildout-1.5.2.tar.gz
Running zc.buildout-1.5.2/setup.py -q bdist_egg --dist-dir /tmp/easy_install-GSG8Wc/zc.buildout-1.5.2/egg-dist-tmp-VVmlKA

Installed /tmp/tmprT0Ycp/zc.buildout-1.5.2-py2.6.egg

Because this distribution was installed --multi-version, before you can
import modules from this package in an application, you will need to
'import pkg_resources' and then use a 'require()' call similar to one of
these examples, in order to select the desired version:

    pkg_resources.require("zc.buildout")  # latest installed version
    pkg_resources.require("zc.buildout==1.5.2")  # this exact version
    pkg_resources.require("zc.buildout>=1.5.2")  # this version or higher

Creating directory '/home/makcro/tmp/zope_playground/helloworld/bin'.
Creating directory '/home/makcro/tmp/zope_playground/helloworld/parts'.
Creating directory '/home/makcro/tmp/zope_playground/helloworld/eggs'.
Creating directory '/home/makcro/tmp/zope_playground/helloworld/develop-eggs'.
Getting distribution for 'setuptools==0.6c9'.
Got setuptools 0.6c9.
Getting distribution for 'zc.buildout==1.1.1'.
Got zc.buildout 1.1.1.
Generated script '/home/makcro/tmp/zope_playground/helloworld/bin/buildout'.
Invoking zc.buildout...
Downloading http://download.zope.org/zope3.4/3.4.0/versions.cfg
While:
  Installing.
  Getting section app.
  Initializing section app.
  Installing recipe zc.recipe.egg.
Error: There is a version conflict.
We already have: setuptools 0.6c11
setuptools版本0.6c9和0.6c11中似乎存在冲突。。如何解决这个问题

Tnx