0

我是织物工具的新手,我已经在使用 python。当我尝试通过 easy_install 安装结构时,我收到以下同步税错误。

我没有更改脚本中的任何内容,我正在下载按结构代码并尝试通过简单安装进行安装:

请检查以下错误,并给出我将如何进一步进行的建议。

[root@ ~]$ easy_install setup
Searching for setup
Reading https://pypi.python.org/simple/setup/
Couldn't find index page for 'setup' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.python.org/simple/
No local packages or download links found for setup
error: Could not find suitable distribution for Requirement.parse('setup')
[root@cmcibv12 addr:113.128.177.237 ~]$ easy_install fabric
Searching for fabric
Reading https://pypi.python.org/simple/fabric/
Best match: Fabric 1.8.0
Downloading https://pypi.python.org/packages/source/F/Fabric/Fabric-1.8.0.tar.gz#md5=1f195d16b05877767816617749d33eca
Processing Fabric-1.8.0.tar.gz
Writing /tmp/easy_install-PoxSe1/Fabric-1.8.0/setup.cfg
Running Fabric-1.8.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-PoxSe1/Fabric-1.8.0/egg-dist-tmp-JzsXHn
Traceback (most recent call last):
  File "/usr/bin/easy_install", line 8, in ?
    sys.exit(
  File "/usr/lib/python2.4/site-packages/setuptools-1.1.7-py2.4.egg/setuptools/command/easy_install.py", line 1925, in main
    with_ei_usage(lambda:
  File "/usr/lib/python2.4/site-packages/setuptools-1.1.7-py2.4.egg/setuptools/command/easy_install.py", line 1912, in with_ei_usage
    return f()
  File "/usr/lib/python2.4/site-packages/setuptools-1.1.7-py2.4.egg/setuptools/command/easy_install.py", line 1929, in <lambda>
    distclass=DistributionWithoutHelpCommands, **kw
  File "/usr/lib64/python2.4/distutils/core.py", line 149, in setup
    dist.run_commands()
  File "/usr/lib64/python2.4/distutils/dist.py", line 946, in run_commands
    self.run_command(cmd)
  File "/usr/lib64/python2.4/distutils/dist.py", line 966, in run_command
    cmd_obj.run()
  File "/usr/lib/python2.4/site-packages/setuptools-1.1.7-py2.4.egg/setuptools/command/easy_install.py", line 374, in run
    self.easy_install(spec, not self.no_deps)
  File "/usr/lib/python2.4/site-packages/setuptools-1.1.7-py2.4.egg/setuptools/command/easy_install.py", line 609, in easy_install
    return self.install_item(spec, dist.location, tmpdir, deps)
  File "/usr/lib/python2.4/site-packages/setuptools-1.1.7-py2.4.egg/setuptools/command/easy_install.py", line 639, in install_item
    dists = self.install_eggs(spec, download, tmpdir)
  File "/usr/lib/python2.4/site-packages/setuptools-1.1.7-py2.4.egg/setuptools/command/easy_install.py", line 825, in install_eggs
    return self.build_and_install(setup_script, setup_base)
  File "/usr/lib/python2.4/site-packages/setuptools-1.1.7-py2.4.egg/setuptools/command/easy_install.py", line 1031, in build_and_install
    self.run_setup(setup_script, setup_base, args)
  File "/usr/lib/python2.4/site-packages/setuptools-1.1.7-py2.4.egg/setuptools/command/easy_install.py", line 1016, in run_setup
    run_setup(setup_script, args)
  File "/usr/lib/python2.4/site-packages/setuptools-1.1.7-py2.4.egg/setuptools/sandbox.py", line 68, in run_setup
    DirectorySandbox(setup_dir).run(
  File "/usr/lib/python2.4/site-packages/setuptools-1.1.7-py2.4.egg/setuptools/sandbox.py", line 120, in run
    return func()
  File "/usr/lib/python2.4/site-packages/setuptools-1.1.7-py2.4.egg/setuptools/sandbox.py", line 71, in <lambda>
    {'__file__':setup_script, '__name__':'__main__'}
  File "setup.py", line 7, in ?
  File "/tmp/easy_install-PoxSe1/Fabric-1.8.0/fabric/version.py", line 57
    sha1 = (" (%s)" % sha) if sha else ""
                            ^
SyntaxError: invalid syntax

提前致谢。

4

2 回答 2

2

Fabric 需要 Python 2.5 或更高版本,而您使用的是 2.4。见官方文档

鉴于 Python 2.4 的年龄和 Python 2.5 中有用的工具(例如上下文管理器和新模块)的数量,我们不打算支持它。也就是说,特定于 2.5 的功能的实际数量并没有太大,我们将链接到 - 但不支持 - 第三方 2.4 兼容的分支。(据我们所知,目前不存在这样的分叉。)

于 2013-11-01T06:12:28.510 回答
0

Fabric 需要 Python 版本 2.5 或 2.6。Fabric 尚未在 Python 3.x 上进行测试,因此可能与该开发线不兼容。

于 2013-11-01T08:21:01.363 回答