在centos 6.x上使用python3安装扭曲失败?

时间:2013-08-11 16:12:11

标签: python python-3.x centos twisted

  1. 首先,我手动编译并安装了python3.3,没有报告错误。

    cd /path/to/python3.3
    ./configure
    make && make install
    
  2. 然后我下载了扭曲的源代码树并使用以下命令安装它:

    cd /path/to/twisted
    python3 setup.py install
    
  3. 然后报告错误:

    error: in 'ext_modules' option (extension 'twisted.runner.portmap'), 'sources' must be present and must be a list of source filenames
    

    我非常感谢任何帮助在centos上使用python3的任何帮助。

    谢谢。

1 个答案:

答案 0 :(得分:1)

你不能以这种方式在Python 3上安装Twisted。检查来自subversion的来源:

svn checkout svn://svn.twistedmatrix.com/svn/Twisted/tags/releases/twisted-13.1.0

然后运行setup3.py:

python3.3 setup3.py install