0
  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 的任何帮助。

    谢谢你。

4

1 回答 1

1

你不能以这种方式在 Python 3 上安装 Twisted。从颠覆中检查源代码:

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

然后运行 ​​setup3.py:

python3.3 setup3.py install
于 2013-08-12T09:56:25.743 回答